Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 69 for Invert (0.24 sec)

  1. pkg/volume/testing/testing.go

    			return "", fmt.Errorf("timed out to attach volume %q to node %q", volumeName, nodeName)
    		}
    		if volumeNodes.Has(string(nodeName)) || volumeNodes.Has(MultiAttachNode) || nodeName == MultiAttachNode {
    			volumeNodes.Insert(string(nodeName))
    			return "/dev/vdb-test", nil
    		}
    		return "", fmt.Errorf("volume %q trying to attach to node %q is already attached to node %q", volumeName, nodeName, volumeNodes)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  2. .bazelrc

    build:ios_x86_64 --cpu=ios_x86_64
    build:ios_fat --config=ios
    build:ios_fat --ios_multi_cpus=armv7,arm64,i386,x86_64
    
    # Config to use a mostly-static build and disable modular op registration
    # support (this will revert to loading TensorFlow with RTLD_GLOBAL in Python).
    # By default, TensorFlow will build with a dependence on
    # //tensorflow:libtensorflow_framework.so.
    build:monolithic --define framework_shared_object=false
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  3. cmd/bucket-handlers.go

    	if err := xmlDecoder(r.Body, deleteObjectsReq, maxBodySize); err != nil {
    		writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
    		return
    	}
    
    	objects := make([]ObjectV, len(deleteObjectsReq.Objects))
    	// Convert object name delete objects if it has `/` in the beginning.
    	for i := range deleteObjectsReq.Objects {
    		deleteObjectsReq.Objects[i].ObjectName = trimLeadingSlash(deleteObjectsReq.Objects[i].ObjectName)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  4. cmd/kubelet/app/server.go

    	scheme, _, err := kubeletscheme.NewSchemeAndCodecs()
    	if err != nil {
    		return err
    	}
    	versioned := kubeletconfigv1beta1.KubeletConfiguration{}
    	if err := scheme.Convert(kc, &versioned, nil); err != nil {
    		return err
    	}
    	cz.Set(versioned)
    	return nil
    }
    
    func initConfigz(kc *kubeletconfiginternal.KubeletConfiguration) error {
    	cz, err := configz.New("kubeletconfig")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  5. src/cmd/dist/build.go

    	})
    
    	// Add generated files for this package.
    	for _, gt := range gentab {
    		if gt.pkg == pkg {
    			files = append(files, gt.file)
    		}
    	}
    	files = uniq(files)
    
    	// Convert to absolute paths.
    	for i, p := range files {
    		if !filepath.IsAbs(p) {
    			files[i] = pathf("%s/%s", dir, p)
    		}
    	}
    
    	// Is the target up-to-date?
    	var gofiles, sfiles []string
    	stale := rebuildall
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

        if (remainingNanos + SPIN_THRESHOLD_NANOS < 0) {
          // We over-waited for our timeout.
          message += " (plus ";
          long overWaitNanos = -remainingNanos;
          long overWaitUnits = unit.convert(overWaitNanos, TimeUnit.NANOSECONDS);
          long overWaitLeftoverNanos = overWaitNanos - unit.toNanos(overWaitUnits);
          boolean shouldShowExtraNanos =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  7. guava/src/com/google/common/util/concurrent/AbstractFuture.java

        if (remainingNanos + SPIN_THRESHOLD_NANOS < 0) {
          // We over-waited for our timeout.
          message += " (plus ";
          long overWaitNanos = -remainingNanos;
          long overWaitUnits = unit.convert(overWaitNanos, TimeUnit.NANOSECONDS);
          long overWaitLeftoverNanos = overWaitNanos - unit.toNanos(overWaitUnits);
          boolean shouldShowExtraNanos =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  8. pilot/pkg/networking/core/sidecar_simulation_test.go

    				"known.default.svc.cluster.local":     {"outbound|80||known.default.svc.cluster.local"},
    				// Wildcard doesn't match any known services, insert it as-is
    				"*.unknown.example.com": {"outbound|80||arbitrary.example.com"},
    			},
    		},
    		{
    			name: "wildcard match with sidecar",
    			cfg: []Configer{
    				vsArgs{
    					Namespace: "default",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  9. src/net/http/client_test.go

    				"Cookie4": {"NewValue4"},
    				"Cycle":   {"2"},
    			}
    			SetCookie(w, &Cookie{Name: "Cycle", Value: "3", Path: "/"})
    			SetCookie(w, &Cookie{Name: "Cookie5", Value: "NewValue5", Path: "/"}) // Insert cookie into Jar
    			Redirect(w, r, "/", StatusFound)
    		case "3":
    			want = map[string][]string{
    				"Cookie1": {"OldValue1a", "OldValue1b"},
    				"Cookie3": {"NewValue3"},
    				"Cookie4": {"NewValue4"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  10. pkg/scheduler/internal/queue/scheduling_queue.go

    	for _, pl := range p.preEnqueuePluginMap[pod.Spec.SchedulerName] {
    		s = p.runPreEnqueuePlugin(ctx, pl, pod, shouldRecordMetric)
    		if s.IsSuccess() {
    			continue
    		}
    		pInfo.UnschedulablePlugins.Insert(pl.Name())
    		metrics.UnschedulableReason(pl.Name(), pod.Spec.SchedulerName).Inc()
    		if s.Code() == framework.Error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
Back to top