Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 470 for gStates (0.15 sec)

  1. cmd/kube-controller-manager/app/controllermanager_test.go

    	if diff := cmp.Diff(controllersWithoutFeatureGates, controllersWithFeatureGates); diff != "" {
    		t.Errorf("unexpected controllers after enabling feature gates, NewControllerDescriptors should always return all controller descriptors. Controllers should define required feature gates in ControllerDescriptor.requiredFeatureGates. Diff of returned controllers:\n%s", diff)
    	}
    }
    
    func TestFeatureGatedControllersShouldNotDefineAliases(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/utils/lstm_utils.cc

      none_ = CreateNoneValue(&builder_, fused_func_op_.getLoc());
      // Extract input to cifg gates via slicing the weight tensor
      SetWeightForInputToCellGate();
      SetWeightForInputToInputGate();
      SetWeightForInputToForgetGate();
      SetWeightForInputToOutputGate();
    
      // Extract recurrent to cifg gates via slicing the weight tensor
      SetWeightForRecurrentToCellGate();
      SetWeightForRecurrentToInputGate();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  3. src/runtime/lock_futex.go

    	mutex_sleeping = 2
    
    	active_spin     = 4
    	active_spin_cnt = 30
    	passive_spin    = 1
    )
    
    // Possible lock states are mutex_unlocked, mutex_locked and mutex_sleeping.
    // mutex_sleeping means that there is presumably at least one sleeping thread.
    // Note that there can be spinning threads during all states - they do not
    // affect mutex's state.
    
    // We use the uintptr mutex.key and note.key as a uint32.
    //
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:34 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. security/pkg/pki/ca/selfsignedcarootcertrotator_test.go

    	rootCert := rotator.ca.keyCertBundle.GetRootCertPem()
    	return rootCertItem{caSecret: caSecret, rootCertInKeyCertBundle: rootCert}
    }
    
    // TestRootCertRotatorForSigningCitadel verifies that rotator rotates root cert,
    // updates key cert bundle and config map.
    func TestRootCertRotatorForSigningCitadel(t *testing.T) {
    	rotator := getRootCertRotator(getDefaultSelfSignedIstioCAOptions(nil))
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 11 23:33:41 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/quantization/quantization_context.h

        ON_INPUT,
        ON_OUTPUT
      } pos = NO_REQUANTIZE;
    
      // Quantization parameters will be used to add the requantize ops.
      QuantParams params;
    };
    
    // This class manages all the intermediate quantization states.
    class QuantizeContext {
     public:
      QuantizeContext(func::FuncOp func, const DeviceTarget &spec);
    
      // Returns all the quant region ops.
      std::vector<quantfork::QuantizeRegionOp> GetAllOps();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 08 01:38:03 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  6. src/net/http/export_test.go

    			return false
    		}
    	}
    	return true
    }
    
    func (s *Server) ExportAllConnsByState() map[ConnState]int {
    	states := map[ConnState]int{}
    	s.mu.Lock()
    	defer s.mu.Unlock()
    	for c := range s.activeConn {
    		st, _ := c.getState()
    		states[st] += 1
    	}
    	return states
    }
    
    func (r *Request) WithT(t *testing.T) *Request {
    	return r.WithContext(context.WithValue(r.Context(), tLogKey{}, t.Logf))
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:11:57 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/defaulting/prune.go

    	"k8s.io/apimachinery/pkg/runtime"
    )
    
    // PruneDefaults prunes default values according to the schema and according to
    // the ObjectMeta definition of the running server. It mutates the passed schema.
    func PruneDefaults(s *structuralschema.Structural) error {
    	p := pruner{s}
    	_, err := p.pruneDefaults(s, NewRootObjectFunc())
    	return err
    }
    
    type pruner struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 23 20:20:54 UTC 2019
    - 2.6K bytes
    - Viewed (0)
  8. test/codegen/rotate.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package codegen
    
    import "math/bits"
    
    // ------------------- //
    //    const rotates    //
    // ------------------- //
    
    func rot64(x uint64) uint64 {
    	var a uint64
    
    	// amd64:"ROLQ\t[$]7"
    	// ppc64x:"ROTL\t[$]7"
    	// loong64: "ROTRV\t[$]57"
    	// riscv64: "RORI\t[$]57"
    	a += x<<7 | x>>57
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 6K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/componentconfigs/kubeproxy.go

    	const kind = "KubeProxyConfiguration"
    
    	// The below code is necessary because while KubeProxy may be defined, the user may not
    	// have defined any feature-gates, thus FeatureGates will be nil and the later insertion
    	// of any feature-gates will cause a panic.
    	if kp.config.FeatureGates == nil {
    		kp.config.FeatureGates = map[string]bool{}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 20 03:01:30 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  10. pilot/pkg/networking/grpcgen/cds.go

    			EdsConfig: &core.ConfigSource{
    				ConfigSourceSpecifier: &core.ConfigSource_Ads{
    					Ads: &core.AggregatedConfigSource{},
    				},
    			},
    		},
    	}
    }
    
    // applyDestinationRule mutates the default cluster to reflect traffic policies, and returns a set of additional
    // subset clusters if specified by a destination rule
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top