Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 55 for dependents (0.23 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

      // control/data edges between them will only be reflected in host graph.
      // From XLA's perspective, two originally dependent clusters are no longer
      // connected, which makes them look like they can be scheduled for execution
      // in arbitrary order even though in fact they must be executed in order
      // according to their host-side graph dependency. This can cause deadlock.
      // Therefore, we hint XLA what the correct ordering of these clusters should
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  6. src/debug/elf/elf.go

    	{0x65a3dbe7, "PT_OPENBSD_WXNEEDED"},
    	{0x65a41be6, "PT_OPENBSD_BOOTDATA"},
    	{0x6ffffffb, "PT_SUNWSTACK"},
    	{0x6fffffff, "PT_HIOS"},
    	{0x70000000, "PT_LOPROC"},
    	// We don't list the processor-dependent ProgTypes,
    	// as the values overlap.
    	{0x7fffffff, "PT_HIPROC"},
    }
    
    func (i ProgType) String() string   { return stringName(uint32(i), ptStrings, false) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K 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. doc/go1.17_spec.html

    </li>
    </ol>
    
    <p>
    In all non-constant conversions involving floating-point or complex values,
    if the result type cannot represent the value the conversion
    succeeds but the result value is implementation-dependent.
    </p>
    
    <h4 id="Conversions_to_and_from_a_string_type">Conversions to and from a string type</h4>
    
    <ol>
    <li>
    Converting a signed or unsigned integer value to a string type yields a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top