Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 108 for expectAction (0.2 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    			}
    
    			if len(compilationResults) != len(tt.expectedResults) {
    				t.Fatalf("one test expectation per rule is required")
    			}
    
    			for i, expectedResult := range tt.expectedResults {
    				if !expectedResult.matches(compilationResults[i]) {
    					t.Errorf("result %d does not match expectation: %v", i+1, expectedResult)
    				}
    			}
    		})
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  2. src/internal/trace/trace_test.go

    		}
    		cmd.Env = append(cmd.Env, "GODEBUG="+godebug)
    
    		// Capture stdout and stderr.
    		//
    		// The protocol for these programs is that stdout contains the trace data
    		// and stderr is an expectation in string format.
    		var traceBuf, errBuf bytes.Buffer
    		cmd.Stdout = &traceBuf
    		cmd.Stderr = &errBuf
    		// Run the program.
    		if err := cmd.Run(); err != nil {
    			if errBuf.Len() != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/collect/TableCollectionTest.java

         * implementation, because {@code map.get()} returns a view collection that changes in the
         * course of a call to {@code remove()}. Thus, the expectation doesn't hold that {@code
         * map.remove(x)} returns the same value which {@code map.get(x)} did immediately beforehand.
         */
        @Override
        public void testRemove() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 19 20:34:55 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  4. src/runtime/race_ppc64le.s

    	JMP	racecall<>(SB)
    
    // Finds g0 and sets its stack
    // Arguments were loaded for call from Go to C
    TEXT	racecall<>(SB), NOSPLIT, $0-0
    	// Set the LR slot for the ppc64 ABI
    	MOVD	LR, R10
    	MOVD	R10, 0(R1)	// Go expectation
    	MOVD	R10, 16(R1)	// C ABI
    	// Get info from the current goroutine
    	MOVD    runtimeĀ·tls_g(SB), R10	// g offset in TLS
    	MOVD    0(R10), g
    	MOVD	g_m(g), R7		// m for g
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 17K bytes
    - Viewed (0)
  5. pilot/pkg/xds/mesh_network_test.go

    						Annotations: map[string]string{annotation.TrafficNodeSelector.Name: "{}"},
    						Labels: map[string]string{
    							label.TopologyNetwork.Name: "network-2",
    							// set the label here to test it = expectation doesn't change since we map back to that via NodePort
    							label.NetworkingGatewayPort.Name: "443",
    						},
    					},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/c/c_api_unified_experimental_mlir.cc

          for (AbstractTensorHandle* input : inputs)
            if (arg_def_type != cast<MlirTensor>(input)->getElementType())
              return InvalidArgument(
                  "Invalid input list: type mismatch the op def expectation");
        } else if (!inputs.empty()) {
          if (arg_def.type_attr().empty())
            return FailedPrecondition(
                "Invalid opdef type constraint: either type or type_attr required");
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  7. architecture/networking/pilot.md

    Despite this expectation in SotW, due to a quirk in the protocol we can actually enable one of our most important optimizations. XDS types form a tree, with CDS and LDS the root of the tree for Envoy. For root types, we *must* always generate the full set of resources -...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  8. cluster/gce/config-test.sh

    # OIDC discovery flows in Pods in the same cluster. For some providers
    # with configurations that support non-traditional KSA authentication methods,
    # this value may make sense, but if the expectation is traditional OIDC, don't
    # use this value in production. If you do use it, the FQDN is preferred to
    # kubernetes.default.svc, to avoid something outside the cluster attempting
    # to resolve the partially qualified name.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 17:20:24 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  9. src/internal/trace/traceviewer/static/trace_viewer_full.html

    if(expectation.firstCpuIdleTime!==undefined){firstCpuIdleSamples.push(decorateInteractivitySampleWithDiagnostics_(rendererHelper,expectation.firstCpuIdleTime,expectation.navigationStart,expectation.fmpEvent.start,expectation.domContentLoadedEndEvent.start,expectation.url));}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (0)
  10. src/net/http/serve_test.go

    	contentLength    int // of request body
    	chunked          bool
    	expectation      string // e.g. "100-continue"
    	readBody         bool   // whether handler should read the body (if false, sends StatusUnauthorized)
    	expectedResponse string // expected substring in first line of http response
    }
    
    func expectTest(contentLength int, expectation string, readBody bool, expectedResponse string) serverExpectTest {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top