Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 162 for below (0.18 sec)

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

    				"has(self.a.b)":                            2,
    				"has(self.a1.b1.c1)":                       3,
    				"!(has(self.a1.d2) && has(self.a1.d2.e2))": 3, // must check intermediate optional fields (see below no such key error for d2)
    				"!has(self.a1.d2)":                         3,
    			},
    		},
    		{name: "map access",
    			obj: map[string]interface{}{
    				"val": map[string]interface{}{
    					"b": 1,
    					"d": 2,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/DefaultServiceRegistry.java

     *
     * <li>Calling {@link #addProvider(ServiceRegistrationProvider)} to register a service provider bean. A provider bean may have factory, decorator and configuration methods as described below.</li>
     *
     * <li>Adding a factory method. A factory method should be annotated with {@literal @}{@link Provides}, have a name that starts with 'create', and have a non-void return type.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  3. src/net/dnsclient_unix_test.go

    		fake := fakeDNSServer{rh: func(_, s string, q dnsmessage.Message, deadline time.Time) (dnsmessage.Message, error) {
    			t.Log(s, q)
    
    			switch tt.resolveWhich(q.Questions[0]) {
    			case resolveOK:
    				// Handle below.
    			case resolveOpError:
    				return dnsmessage.Message{}, &OpError{Op: "write", Err: fmt.Errorf("socket on fire")}
    			case resolveServfail:
    				return dnsmessage.Message{
    					Header: dnsmessage.Header{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/resource_op_lifting.mlir

      func.return
    }
    
    
    // Make sure unsupported resources are handled correctly. If a resource is used
    // in an unsupported op, resource op lifting should skip lifting that resource.
    // So for the below test, the IR should stay unchanged.
    // CHECK-LABEL: func @test_unsupported_resource_op
    func.func @test_unsupported_resource_op() -> tensor<*xi32> {
      // CHECK: "tf.VarHandleOp"
      // CHECK: "tf_device.cluster"() ({
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 74K bytes
    - Viewed (0)
  5. src/go/types/api_test.go

    	}
    	return nil, fmt.Errorf("package %q not found", path)
    }
    
    func TestSelection(t *testing.T) {
    	selections := make(map[*ast.SelectorExpr]*Selection)
    
    	// We need a specific fileset in this test below for positions.
    	// Cannot use typecheck helper.
    	fset := token.NewFileSet()
    	imports := make(testImporter)
    	conf := Config{Importer: imports}
    	makePkg := func(path, src string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/Project.java

     *
     * All extra properties must be defined through the &quot;ext&quot; namespace. Once an extra property has been defined,
     * it is available directly on the owning object (in the below case the Project, Task, and sub-projects respectively) and can
     * be read and updated. Only the initial declaration that needs to be done via the namespace.
     *
     * <pre>
     * project.ext.prop1 = "foo"
     * task doStuff {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  7. src/runtime/asm_amd64.s

    	BYTE	$0x90	// NOP
    
    // This is called from .init_array and follows the platform, not Go, ABI.
    TEXT runtime·addmoduledata(SB),NOSPLIT,$0-0
    	PUSHQ	R15 // The access to global variables below implicitly uses R15, which is callee-save
    	MOVQ	runtime·lastmoduledatap(SB), AX
    	MOVQ	DI, moduledata_next(AX)
    	MOVQ	DI, runtime·lastmoduledatap(SB)
    	POPQ	R15
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  8. src/runtime/pprof/pprof_test.go

    					if have, want := p.SampleType[i].Unit, unit; have != want {
    						t.Logf("pN SampleType[%d]; %q != %q", i, have, want)
    						ok = false
    					}
    				}
    
    				// cpuHog1 called below is the primary source of CPU
    				// load, but there may be some background work by the
    				// runtime. Since the OS rusage measurement will
    				// include all work done by the process, also compare
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  9. plugin/pkg/admission/limitranger/admission_test.go

    		if err != nil {
    			t.Errorf("Unexpected error for pvc: %s, %v", test.pvc.Name, err)
    		}
    	}
    
    	errorCases := []testCase{
    		{
    			pvc:        validPersistentVolumeClaim("pvc-below-min-storage-request", getVolumeResourceRequirements(getStorageResourceList("500Mi"), getStorageResourceList(""))),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  10. tensorflow/c/c_api.h

    // The new graph construction API, still under development.
    
    // Represents a computation graph.  Graphs may be shared between sessions.
    // Graphs are thread-safe when used as directed below.
    typedef struct TF_Graph TF_Graph;
    
    // Return a new graph object.
    TF_CAPI_EXPORT extern TF_Graph* TF_NewGraph(void);
    
    // Destroy an options object. Graph will be deleted once no more
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
Back to top