Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 151 for hiding (0.14 sec)

  1. android/guava/src/com/google/common/util/concurrent/Futures.java

      // safely publish these objects and we won't need this whole discussion.
      // TODO(user,lukes): consider adding volatile to all these fields since in current known JVMs
      // that should resolve the issue. This comes at the cost of adding more write barriers to the
      // implementations.
    
      private Futures() {}
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/Futures.java

      // safely publish these objects and we won't need this whole discussion.
      // TODO(user,lukes): consider adding volatile to all these fields since in current known JVMs
      // that should resolve the issue. This comes at the cost of adding more write barriers to the
      // implementations.
    
      private Futures() {}
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 64.1K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.31.md

    - Kubeadm: only enable the klog flags that are still supported for kubeadm, rather than hiding the unwanted flags. This means that the previously unrecommended hidden flags about klog (including `--alsologtostderr`, `--log-backtrace-at`, `--log-dir`, `--logtostderr`, `--log-file`, `--log-file-max-size`, `--one-output`, `--skip-log-headers`,...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  4. src/cmd/cgo/out.go

    // multiple goroutines call into C code, TSAN does not understand
    // that the calls are properly synchronized on the Go side.
    //
    // To be clear, if the calls are not properly synchronized on the Go side,
    // we will be hiding races. But when using TSAN on mixed Go C/C++ code
    // it is more important to avoid false positives, which reduce confidence
    // in the tool, than to avoid false negatives.
    const yesTsanProlog = `
    #line 1 "cgo-tsan-prolog"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  5. pkg/controller/volume/persistentvolume/pv_controller.go

    				logger.V(4).Info("Synchronizing unbound PersistentVolumeClaim, volume already bound, finishing the binding", "PVC", klog.KObj(claim))
    
    				// Finish the volume binding by adding claim UID.
    				if err = ctrl.bind(ctx, volume, claim); err != nil {
    					return err
    				}
    				// OBSERVATION: pvc is "Bound", pv is "Bound"
    				return nil
    			} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/volumebinding/binder_test.go

    			},
    			shouldFail: true,
    		},
    		"binding-times-out": {
    			binding:    makeBinding(unboundPVC, pvNode1aBound),
    			initPVs:    []*v1.PersistentVolume{pvNode1a},
    			initPVCs:   []*v1.PersistentVolumeClaim{unboundPVC},
    			shouldFail: true,
    		},
    		"binding-fails": {
    			binding:    makeBinding(unboundPVC2, pvNode1bBound),
    			initPVs:    []*v1.PersistentVolume{pvNode1b},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  7. pkg/apis/admissionregistration/types.go

    //
    // For a given admission request, each binding will cause its policy to be
    // evaluated N times, where N is 1 for policies/bindings that don't use
    // params, otherwise N is the number of parameters selected by the binding.
    //
    // The CEL expressions of a policy must have a computed CEL cost below the maximum
    // CEL budget. Each evaluation of the policy is given an independent CEL cost budget.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go

    func (f *fakeMatcher) BindingMatches(a admission.Attributes, o admission.ObjectInterfaces, binding generic.BindingAccessor) (bool, error) {
    	namespace, name := binding.GetNamespace(), binding.GetName()
    	key := types.NamespacedName{
    		Name:      name,
    		Namespace: namespace,
    	}
    	if fun, ok := f.BindingMatchFuncs[key]; ok {
    		return fun(binding, a), nil
    	}
    
    	// Default is match everything
    	return f.DefaultMatch, nil
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 01:39:01 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // `parameterNotFoundAction` controls the behavior of the binding when the resource
      // exists, and name or selector is valid, but there are no parameters
      // matched by the binding. If the value is set to `Allow`, then no
      // matched parameters will be treated as successful validation by the binding.
      // If set to `Deny`, then no matched parameters will be subject to the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/admissionregistration/v1beta1/generated.proto

      // `parameterNotFoundAction` controls the behavior of the binding when the resource
      // exists, and name or selector is valid, but there are no parameters
      // matched by the binding. If the value is set to `Allow`, then no
      // matched parameters will be treated as successful validation by the binding.
      // If set to `Deny`, then no matched parameters will be subject to the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
Back to top