Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 177 for Segdata (0.35 sec)

  1. src/main/webapp/js/search.js

        });
      }
    
      var IMG_LOADING_DELAY = 200;
      var IMG_LOADING_MAX = 0;
      loadImage = function(img, url, limit) {
        var imgData = new Image();
        $(imgData).on("load", function() {
          $(img).css("background-image", "");
          $(img).attr("src", url);
        });
        $(imgData).on("error", function() {
          if (limit > 0) {
            setTimeout(function() {
              loadImage(img, url, --limit);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Mar 30 05:45:24 UTC 2023
    - 7.5K bytes
    - Viewed (1)
  2. pkg/webhooks/webhookpatch_test.go

    					if strings.HasSuffix(w.Name, tc.webhookName) {
    						if !bytes.Equal(w.ClientConfig.CABundle, tc.pemData) {
    							t.Fatalf("Incorrect CA bundle: expect %s got %s", tc.pemData, w.ClientConfig.CABundle)
    						}
    					}
    					if !strings.HasSuffix(w.Name, tc.webhookName) {
    						if bytes.Equal(w.ClientConfig.CABundle, tc.pemData) {
    							t.Fatalf("Non-matching webhook \"%s\" CA bundle updated to %v", w.Name, w.ClientConfig.CABundle)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 02 09:53:38 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  3. pkg/kubelet/winstats/perfcounters.go

    	}
    
    	return &perfCounterImpl{
    		queryHandle:   queryHandle,
    		counterHandle: counterHandle,
    	}, nil
    }
    
    // getData is used for getting data without * in counter name.
    func (p *perfCounterImpl) getData() (uint64, error) {
    	filledBuf, bufCount, err := p.getQueriedData()
    	if err != nil {
    		return 0, err
    	}
    
    	var data uint64 = 0
    	for i := 0; i < int(bufCount); i++ {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 19:13:24 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. pkg/kubelet/checkpointmanager/checkpoint_manager_test.go

    		err := manager.GetCheckpoint(tc.checkpointKey, checkpointOut)
    		assert.NoError(t, err)
    		actualPortMappings, actualHostNetwork := checkpointOut.GetData()
    		expPortMappings, expHostNetwork := tc.checkpoint.GetData()
    		assert.Equal(t, actualPortMappings, expPortMappings)
    		assert.Equal(t, actualHostNetwork, expHostNetwork)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 12 06:41:04 UTC 2018
    - 6.6K bytes
    - Viewed (0)
  5. src/internal/types/testdata/fixedbugs/issue61879.go

    // Larger example from issue
    
    type InterfaceA[T comparable] interface {
    	setData(string) InterfaceA[T]
    }
    
    type ImplA[T comparable] struct {
    	data string
    	args []any
    }
    
    func NewInterfaceA[T comparable](args ...any) InterfaceA[T] {
    	return &ImplA[T]{
    		data: fmt.Sprintf("%v", args...),
    		args: args,
    	}
    }
    
    func (k *ImplA[T]) setData(data string) InterfaceA[T] {
    	k.data = data
    	return k
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 19:42:56 UTC 2023
    - 1K bytes
    - Viewed (0)
  6. src/main/java/jcifs/http/NetworkExplorer.java

                String qs = req.getQueryString();
                DfsReferralData refdata = dr.getData();
                redir = new StringBuffer(redir.substring(0, redir.length() - req.getPathInfo().length()));
                redir.append('/');
                redir.append(refdata.getServer());
                redir.append('/');
                redir.append(refdata.getShare());
                redir.append('/');
                if ( qs != null ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 21.3K bytes
    - Viewed (0)
  7. pkg/util/pod/pod.go

    	}
    
    	newData, err := json.Marshal(v1.Pod{
    		ObjectMeta: metav1.ObjectMeta{UID: uid}, // only put the uid in the new object to ensure it appears in the patch as a precondition
    		Status:     newPodStatus,
    	})
    	if err != nil {
    		return nil, false, fmt.Errorf("failed to Marshal newData for pod %q/%q: %v", namespace, name, err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 07 15:22:29 UTC 2022
    - 3K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/devicemanager/checkpoint/checkpoint.go

    func (cp *Data) VerifyChecksum() error {
    	return cp.Checksum.Verify(cp.Data)
    }
    
    // GetData returns device entries and registered devices in the *most recent*
    // checkpoint format, *not* in the original format stored on disk.
    func (cp *Data) GetData() ([]PodDevicesEntry, map[string][]string) {
    	return cp.Data.PodDeviceEntries, cp.Data.RegisteredDevices
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 12:01:56 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/apis/bootstraptoken/v1/utils.go

    	}
    
    	// Get the description (if any) from the Secret
    	description := bootstrapsecretutil.GetData(secret, bootstrapapi.BootstrapTokenDescriptionKey)
    
    	// Expiration time is optional, if not specified this implies the token
    	// never expires.
    	secretExpiration := bootstrapsecretutil.GetData(secret, bootstrapapi.BootstrapTokenExpirationKey)
    	var expires *metav1.Time
    	if len(secretExpiration) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 26 15:51:39 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  10. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/ExecutionGraph.java

        public ExecutionGraph(int index, Line... lines) {
            this.index = index;
            this.title = "Execution " + index + " (ms)";
            this.data = Arrays.asList(lines);
        }
    
        String getData() {
            return JsonOutput.toJson(data);
        }
    
        String getTicks() {
            List<List<Object>> ticks = IntStream.range(0, data.get(0).data.size())
                .mapToObj(index -> Arrays.<Object>asList(index, index))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top