Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for dependents (0.17 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        operations in the while loop body are dependent on which inputs, it captures
        inter iteration parallelism in while loop. Control dependencies on the other
        hand create a barrier at the end of while loop body thus blocking any
        parallelism across iterations.
    
        For example, the following while loop body has a `%barrier` at the end.
        Although there is no data/control dependency between `tf.AssignVariableOp`
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/exec.go

    	// Note that this flag change applies even when running vet as
    	// a dependency of vetting a package outside std.
    	// (Otherwise we'd have to introduce a whole separate
    	// space of "vet fmt as a dependency of a std top-level vet"
    	// versus "vet fmt as a dependency of a non-std top-level vet".)
    	// This is OK as long as the packages that are farther down the
    	// dependency tree turn on *more* analysis, as here.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

        def "workspace id of project transforms is unique per build with included builds"() {
            // The setup here is in a way that the project path of the project dependency in the same build
            // is the same as the buildTreePath of the substituted project dependency in the included build.
            // This way we test that you can't do special handling for "local" project dependencies when calculating
            // a transform workspace.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  4. src/cmd/go/alldocs.go

    // module cache.
    //
    // To add a dependency for a package or upgrade it to its latest version:
    //
    //	go get example.com/pkg
    //
    // To upgrade or downgrade a package to a specific version:
    //
    //	go get example.com/pkg@v1.2.3
    //
    // To remove a dependency on a module and downgrade modules that require it:
    //
    //	go get example.com/mod@none
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  5. src/database/sql/sql.go

    		tx, err = db.begin(ctx, opts, strategy)
    		return err
    	})
    
    	return tx, err
    }
    
    // Begin starts a transaction. The default isolation level is dependent on
    // the driver.
    //
    // Begin uses [context.Background] internally; to specify the context, use
    // [DB.BeginTx].
    func (db *DB) Begin() (*Tx, error) {
    	return db.BeginTx(context.Background(), nil)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  6. src/cmd/go/internal/load/pkg.go

    	Standard      bool                  `json:",omitempty"` // is this package part of the standard Go library?
    	DepOnly       bool                  `json:",omitempty"` // package is only as a dependency, not explicitly listed
    	BinaryOnly    bool                  `json:",omitempty"` // package cannot be recompiled
    	Incomplete    bool                  `json:",omitempty"` // was there an error loading this package or dependencies?
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  7. pkg/volume/util/operationexecutor/operation_generator.go

    	}, nil
    }
    
    // GenerateMapVolumeFunc marks volume as mounted based on following steps.
    // If plugin is attachable, call WaitForAttach() and then mark the device
    // as mounted. On next step, SetUpDevice is called without dependent of
    // plugin type, but this method mainly is targeted for none attachable plugin.
    // After setup is done, create symbolic links on both global map path and pod
    // device map path. Once symbolic links are created, take fd lock by
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet.go

    	daemonEndpoints *v1.NodeDaemonEndpoints
    
    	// A queue used to trigger pod workers.
    	workQueue queue.WorkQueue
    
    	// oneTimeInitializer is used to initialize modules that are dependent on the runtime to be up.
    	oneTimeInitializer sync.Once
    
    	// If set, use this IP address or addresses for the node
    	nodeIPs []net.IP
    
    	// use this function to validate the kubelet nodeIP
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    	defaultDeleteStrategy := &testRESTStrategy{scheme, names.SimpleNameGenerator, true, false, true}
    	// orphanDeleteStrategy indicates the default garbage collection policy is
    	// to orphan dependentes.
    	orphanDeleteStrategy := &testOrphanDeleteStrategy{defaultDeleteStrategy}
    
    	testcases := []struct {
    		pod               *example.Pod
    		options           *metav1.DeleteOptions
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/data.go

    func maxSizeTrampolines(ctxt *Link, ldr *loader.Loader, s loader.Sym, isTramp bool) uint64 {
    	// If thearch.Trampoline is nil, then trampoline support is not available on this arch.
    	// A trampoline does not need any dependent trampolines.
    	if thearch.Trampoline == nil || isTramp {
    		return 0
    	}
    
    	n := uint64(0)
    	relocs := ldr.Relocs(s)
    	for ri := 0; ri < relocs.Count(); ri++ {
    		r := relocs.At(ri)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
Back to top