Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 70 for Headless (0.11 sec)

  1. src/cmd/compile/internal/types2/subst.go

    		// that has a type argument for it.
    		targs, updated := subst.typeList(t.TypeArgs().list())
    		if updated {
    			// Create a new instance and populate the context to avoid endless
    			// recursion. The position used here is irrelevant because validation only
    			// occurs on t (we don't call validType on named), but we use subst.pos to
    			// help with debugging.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:04:07 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. pkg/controller/volume/persistentvolume/delete_test.go

    //  5. When 3. does not do any changes, finish the tests and compare final set
    //     of volumes/claims with expected claims/volumes and report differences.
    //
    // Some limit of calls in enforced to prevent endless loops.
    func TestDeleteMultiSync(t *testing.T) {
    	tests := []controllerTest{
    		{
    			// delete failure - delete returns error. The controller should
    			// try again.
    			name:            "9-1 - delete returns error",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  3. src/go/types/subst.go

    		// that has a type argument for it.
    		targs, updated := subst.typeList(t.TypeArgs().list())
    		if updated {
    			// Create a new instance and populate the context to avoid endless
    			// recursion. The position used here is irrelevant because validation only
    			// occurs on t (we don't call validType on named), but we use subst.pos to
    			// help with debugging.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:04:07 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/flags.cc

          Flag("tf_xla_disable_deadness_safety_checks_for_debugging",
               &mark_for_compilation_flags
                    ->tf_xla_disable_deadness_safety_checks_for_debugging,
               "Disable deadness related safety checks when clustering (this is "
               "unsound)."),
          Flag("tf_xla_disable_resource_variable_safety_checks_for_debugging",
               &mark_for_compilation_flags
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  5. pkg/kube/multicluster/secretcontroller_test.go

    }
    
    func (i *informerHandler[T]) Close() {
    	i.client.ShutdownHandlers()
    }
    
    func (i *informerHandler[T]) HasSynced() bool {
    	return i.client.HasSynced()
    }
    
    // Test our (lack of) ability to do seamless updates of a cluster.
    // Tracking improvements in https://github.com/istio/istio/issues/49349
    func TestSeamlessMigration(t *testing.T) {
    	stop := make(chan struct{})
    	c := buildTestController(t, true)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  6. src/go/types/unify.go

    			// the current interface. Example:
    			//
    			//    type T interface {
    			//        m() interface{T}
    			//    }
    			//
    			// If two such (differently named) interfaces are compared,
    			// endless recursion occurs if the cycle is not detected.
    			//
    			// If x and y were compared before, they must be equal
    			// (if they were not, the recursion would have stopped);
    			// search the ifacePair stack for the same pair.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/unify.go

    			// the current interface. Example:
    			//
    			//    type T interface {
    			//        m() interface{T}
    			//    }
    			//
    			// If two such (differently named) interfaces are compared,
    			// endless recursion occurs if the cycle is not detected.
    			//
    			// If x and y were compared before, they must be equal
    			// (if they were not, the recursion would have stopped);
    			// search the ifacePair stack for the same pair.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/build_xla_ops_pass.cc

                                            device_type, n->def(), &input_mtypes,
                                            &output_mtypes));
      return output_mtypes;
    }
    
    // Predicate INT32 typed inputs to `n` on the deadness of
    // `predicate_as_control`.
    //
    // This is a performance optimization.  Since INT32 arguments to a
    // PartitionedCall are placed on the host, a producer that produces them on the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/types/typeutil/map.go

    // interface methods.
    //
    // When an unnamed non-empty interface type appears anywhere among the
    // arguments or results of an interface method, there is a potential
    // for endless recursion. Consider:
    //
    //	type X interface { m() []*interface { X } }
    //
    // The problem is that the Methods of the interface in m's result type
    // include m itself; there is no mention of the named type X that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  10. pkg/xds/server.go

    	// Istiod. In that case, Envoy expects us to respond to EDS/RDS/SDS requests to finish warming of
    	// clusters/listeners.
    	// Typically, this should be set to 'false' after response; keeping it true would likely result in an endless loop.
    	AlwaysRespond bool
    
    	// LastResources tracks the contents of the last push.
    	// This field is extremely expensive to maintain and is typically disabled
    	LastResources Resources
    }
    
    type Watcher interface {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 16.3K bytes
    - Viewed (0)
Back to top