Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 161 for aloop (0.07 sec)

  1. pkg/apis/admissionregistration/validation/validation.go

    var celIdentRegex = regexp.MustCompile("^[_a-zA-Z][_a-zA-Z0-9]*$")
    var celReserved = sets.NewString("true", "false", "null", "in",
    	"as", "break", "const", "continue", "else",
    	"for", "function", "if", "import", "let",
    	"loop", "package", "namespace", "return",
    	"var", "void", "while")
    
    func isCELIdentifier(name string) bool {
    	// IDENT          ::= [_a-zA-Z][_a-zA-Z0-9]* - RESERVED
    	// BOOL_LIT       ::= "true" | "false"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/tensor_array_ops_decomposition.mlir

      %write3 = "tf.TensorArrayWriteV3"(%grad3#0, %index, %value, %grad3#1) : (tensor<!tf_type.resource>, tensor<i32>, tensor<3xf32>, tensor<f32>) -> tensor<f32>
      func.return
    }
    
    // -----
    
    // Tests while loop with access to the tensor array defined outside and its
    // gradient defined inside. The gradient creation should be moved outside.
    
    // CHECK-LABEL: func @main
    func.func @main() -> () {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 49K bytes
    - Viewed (0)
  3. pkg/volume/csi/csi_attacher_test.go

    			nodeName:   "node000",
    			driverName: "driver000",
    			volumeName: "vol02",
    			attachID:   getAttachmentName("vol02", "driver02", "node02"),
    			shouldFail: true, // csi not enabled
    		},
    	}
    
    	// attacher loop
    	for _, tc := range testCases {
    		t.Run(tc.name, func(t *testing.T) {
    			t.Logf("test case: %s", tc.name)
    			fakeClient := fakeclient.NewSimpleClientset()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 58.1K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/load.go

    	if len(ld.pkgs) > 0 {
    		panic("buildStacks")
    	}
    	for _, pkg := range ld.roots {
    		pkg.stack = pkg // sentinel to avoid processing in next loop
    		ld.pkgs = append(ld.pkgs, pkg)
    	}
    	for i := 0; i < len(ld.pkgs); i++ { // not range: appending to ld.pkgs in loop
    		pkg := ld.pkgs[i]
    		for _, next := range pkg.imports {
    			if next.stack == nil {
    				next.stack = pkg
    				ld.pkgs = append(ld.pkgs, next)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/route/route.go

    	mostSpecificWildcardVsIndex map[host.Name]types.NamespacedName,
    ) ([]string, []*model.Service) {
    	// TODO: A further optimization would be to completely rely on the index and not do the loop below
    	// However, that requires assuming that serviceRegistry never got filtered after the
    	// egressListener was created.
    	rule := virtualService.Spec.(*networking.VirtualService)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Iterators.java

       * iterable}. The iterator's {@code hasNext()} method returns {@code true} until {@code iterable}
       * is empty.
       *
       * <p><b>Warning:</b> Typical uses of the resulting iterator may produce an infinite loop. You
       * should use an explicit {@code break} or be certain that you will eventually remove all the
       * elements.
       */
      public static <T extends @Nullable Object> Iterator<T> cycle(Iterable<T> iterable) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/Iterators.java

       * iterable}. The iterator's {@code hasNext()} method returns {@code true} until {@code iterable}
       * is empty.
       *
       * <p><b>Warning:</b> Typical uses of the resulting iterator may produce an infinite loop. You
       * should use an explicit {@code break} or be certain that you will eventually remove all the
       * elements.
       */
      public static <T extends @Nullable Object> Iterator<T> cycle(Iterable<T> iterable) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

            if (module == null) {
                return false;
            }
            String name = type.getName();
    
            // check module node imports aliases
            // the while loop enables a check for inner classes which are not fully imported,
            // but visible as the surrounding class is imported and the inner class is public/protected static
            String pname;
            int index = name.length();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    }
    
    func ConvertGroupVersionIntoToDiscovery(list []metav1.APIResource) ([]apidiscoveryv2.APIResourceDiscovery, error) {
    	var apiResourceList []apidiscoveryv2.APIResourceDiscovery
    	parentResources := make(map[string]int)
    
    	// Loop through all top-level resources
    	for _, r := range list {
    		if strings.Contains(r.Name, "/") {
    			// Skip subresources for now so we can get the list of resources
    			continue
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  10. pkg/proxy/winkernel/proxier.go

    	}
    	metrics.SyncProxyRulesLastQueuedTimestamp.SetToCurrentTime()
    	proxier.syncRunner.Run()
    }
    
    // SyncLoop runs periodic work.  This is expected to run as a goroutine or as the main loop of the app.  It does not return.
    func (proxier *Proxier) SyncLoop() {
    	// Update healthz timestamp at beginning in case Sync() never succeeds.
    	if proxier.healthzServer != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
Back to top