Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 99 for BREAK (0.08 sec)

  1. src/crypto/x509/verify_test.go

    	// same subject are present.
    	for _, expectedChain := range test.expectedChains {
    		var match bool
    		for _, chain := range chains {
    			if doesMatch(expectedChain, chain) {
    				match = true
    				break
    			}
    		}
    
    		if !match {
    			t.Errorf("No match found for %v", expectedChain)
    		}
    	}
    
    	// Every returned chain should match 1 expected chain (or <2 if testing against the system)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  2. src/crypto/x509/x509_test.go

    					t.Fatal("SAN extension is marked critical")
    				}
    			}
    		}
    
    		found := false
    		for _, atv := range cert.Subject.Names {
    			if atv.Type.Equal([]int{2, 5, 4, 42}) {
    				found = true
    				break
    			}
    		}
    		if !found {
    			t.Errorf("%s: Names didn't contain oid 2.5.4.42 from ExtraNames", test.name)
    		}
    
    		if cert.Issuer.CommonName != commonName {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

        if (auto ty = value.getType().dyn_cast<RankedTensorType>()) {
          // Exit early as input types are verified to be compatible so all ranked
          // tensors have the same rank.
          inputs_rank = ty.getRank();
          break;
        }
      }
      if (inputs_rank == -1) return success();
    
      // The values can be packed along any of the dimensions between 0 and
      // inputs rank, inclusive. Also, as the negative axis values wrap around so
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  4. cluster/gce/gci/configure-helper.sh

    import socket
    import time
    import sys
    
    timeout_sec=300
    
    def resolve(host):
      for attempt in range(timeout_sec):
        try:
          print(socket.gethostbyname(host))
          break
        except Exception as e:
          sys.stderr.write("error: resolving host %s to IP failed: %s\n" % (host, e))
          time.sleep(1)
          continue
    
    '
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  5. src/net/http/server.go

    	frames := runtime.CallersFrames(pc[:n])
    	var frame runtime.Frame
    	for {
    		frame, more := frames.Next()
    		if !strings.HasPrefix(frame.Function, "net/http.") {
    			return frame
    		}
    		if !more {
    			break
    		}
    	}
    	return frame
    }
    
    func (w *response) WriteHeader(code int) {
    	if w.conn.hijacked() {
    		caller := relevantCaller()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/memorymanager/policy_static_test.go

    				copyMemoryBlocks[i] = copyMemoryBlocks[len(copyMemoryBlocks)-1]
    
    				// remove the last element from our slice
    				copyMemoryBlocks = copyMemoryBlocks[:len(copyMemoryBlocks)-1]
    
    				break
    			}
    		}
    	}
    
    	return len(copyMemoryBlocks) == 0
    }
    
    func areContainerMemoryAssignmentsEqual(t *testing.T, cma1, cma2 state.ContainerMemoryAssignments) bool {
    	if len(cma1) != len(cma2) {
    		return false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 05:49:15 UTC 2023
    - 100.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

          int32_t dim_to_expand = 0;
          for (int32_t i = 0; i < output_rank; ++i) {
            if (!llvm::is_contained(input_dims, i)) {
              dim_to_expand = i;
              break;
            }
          }
    
          TensorType dim_type = input_type.cloneWith({static_cast<int64_t>(1)},
                                                     rewriter.getI32Type());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    			var actual []*metav1.WatchEvent
    			for {
    				var event metav1.WatchEvent
    				_, _, err := d.Decode(nil, &event)
    				if err == io.EOF {
    					break
    				}
    				if err != nil {
    					t.Fatal(err)
    				}
    				actual = append(actual, &event)
    			}
    			if !reflect.DeepEqual(test.expected, actual) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
  9. pkg/api/pod/util_test.go

    	case reflect.Struct:
    		// ObjectMeta is generic and therefore should never have a field with a specific resource's name;
    		// it contains cycles so it's easiest to just skip it.
    		if name == "ObjectMeta" {
    			break
    		}
    		for i := 0; i < tp.NumField(); i++ {
    			field := tp.Field(i)
    			resourcePaths.Insert(sets.List[string](collectResourcePaths(t, resourcename, path.Child(field.Name), field.Name, field.Type))...)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  10. pkg/proxy/nftables/proxier_test.go

    			}
    			for _, x := range tc.expectedDeletedUDPEndpoints {
    				found := false
    				for _, stale := range result.DeletedUDPEndpoints {
    					if stale == x {
    						found = true
    						break
    					}
    				}
    				if !found {
    					t.Errorf("[%d] expected staleEndpoints[%v], but didn't find it: %v", tci, x, result.DeletedUDPEndpoints)
    				}
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
Back to top