Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 473 for wired (0.11 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins_binary.adoc

    .ExampleExtension.java
    ----
    include::{snippetsPath}/plugins/dependenciesBlock/common/buildSrc/src/main/java/com/example/ExampleExtension.java[tags=dependencies-accessors]
    ----
    ====
    
    ==== 4. Wire dependency scope to `Configuration`
    
    Finally, the plugin needs to wire the custom `dependencies` block to some underlying `Configuration` objects. If this is not done, none of the dependencies declared in the custom block will
    be available to dependency resolution.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 29 02:31:44 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    A resolved graph can be obtained lazily from the incoming resolution result of a `Configuration` and wired to an `@Input` property:
    
    .Resolved graph as task input
    ====
    .Task declaration
    [source,java]
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

        Status AddFunctionCallNode(
            const absl::flat_hash_map<const Node*, Node*>& node_images,
            Graph* graph_out);
    
        // Returns the Node that the inputs and outputs of the function should be
        // wired up to.
        Node* GetCallNode() const;
    
        // Returns the index of the arg that the dst of edge should connect to.
        int GetArgIndexForEdge(const Edge* edge) const;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  4. pkg/features/kube_features.go

    	// Register all client-go features with kube's feature gate instance and make all client-go
    	// feature checks use kube's instance. The effect is that for kube binaries, client-go
    	// features are wired to the existing --feature-gates flag just as all other features
    	// are. Further, client-go features automatically support the existing mechanisms for
    	// feature enablement metrics and test overrides.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/config.go

    		// If this constant is changed, DefaultMaxRequestSizeBytes in k8s.io/apiserver/pkg/cel/limits.go
    		// should be changed to reflect the new value, if the two haven't
    		// been wired together already somehow.
    		MaxRequestBodyBytes: int64(3 * 1024 * 1024),
    
    		// Default to treating watch as a long-running operation
    		// Generic API servers have no inherent long-running subresources
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/test/runtime_serializer_protobuf_protobuf_test.go

    		t.Fatal(err)
    	}
    	if n != len(wire1) || !bytes.Equal(wire1, wire2[:n]) {
    		t.Fatalf("unexpected wire:\n%s", hex.Dump(wire2[:n]))
    	}
    
    	wire1 = append([]byte{0x6b, 0x38, 0x73, 0x00}, wire1...)
    
    	obj1WithKind := obj1.DeepCopyObject()
    	obj1WithKind.GetObjectKind().SetGroupVersionKind(schema.GroupVersionKind{Group: "", Version: "v1", Kind: "Carp"})
    	testCases := []struct {
    		obj   runtime.Object
    		data  []byte
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:16 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    	}
    }
    
    func TestSimpleSetupRight(t *testing.T) {
    	s := &genericapitesting.Simple{ObjectMeta: metav1.ObjectMeta{Name: "aName"}}
    	wire, err := runtime.Encode(codec, s)
    	if err != nil {
    		t.Fatal(err)
    	}
    	s2, err := runtime.Decode(codec, wire)
    	if err != nil {
    		t.Fatal(err)
    	}
    	if !reflect.DeepEqual(s, s2) {
    		t.Fatalf("encode/decode broken:\n%#v\n%#v\n", s, s2)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/test/test.go

    	for i := 0; i < 100; i++ {
    		go func() {
    			for ctx.Err() == nil {
    				// Sleep in C for long enough that it is likely that the runtime
    				// will retake this goroutine's currently wired P.
    				C.usleep(1000 /* 1ms */)
    				runtime.Gosched() // avoid starvation (see #28701)
    			}
    		}()
    		go func() {
    			// Trigger lots of synchronization and memory reads/writes to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    When the <<#native_binaries:cunit,CUnit>> or <<#native_binaries:google_test,GoogleTest>> plugins are applied, the task that executes the test suites for a component are automatically wired to the appropriate _check task_.
    
    You can also add custom check tasks as follows:
    
    === Example: Adding a custom check task
    
    [source.multi-language-sample,groovy]
    .build.gradle
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  10. src/runtime/mgcscavenge.go

    	gomaxprocs func() int32
    }
    
    // init initializes a scavenger state and wires to the current G.
    //
    // Must be called from a regular goroutine that can allocate.
    func (s *scavengerState) init() {
    	if s.g != nil {
    		throw("scavenger state is already wired")
    	}
    	lockInit(&s.lock, lockRankScavenge)
    	s.g = getg()
    
    	s.timer = new(timer)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
Back to top