Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 44 for Combine (0.14 sec)

  1. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        /*
         * Futures should be collected even if combiner never runs. This is kind of a silly test, since
         * the combiner is almost certain to hold its own reference to the futures, and a real app would
         * hold a reference to the executor and thus to the combiner. What we really care about is that
         * the futures are released once the combiner is done running. But we happen to provide this
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/generic.rules

    ((Lsh32|Rsh32U)x64  _ (Const64 [c])) && uint64(c) >= 32 => (Const32 [0])
    ((Lsh16|Rsh16U)x64  _ (Const64 [c])) && uint64(c) >= 16 => (Const16 [0])
    ((Lsh8|Rsh8U)x64    _ (Const64 [c])) && uint64(c) >= 8  => (Const8  [0])
    
    // combine const shifts
    (Lsh64x64 <t> (Lsh64x64 x (Const64 [c])) (Const64 [d])) && !uaddOvf(c,d) => (Lsh64x64 x (Const64 <t> [c+d]))
    (Lsh32x64 <t> (Lsh32x64 x (Const64 [c])) (Const64 [d])) && !uaddOvf(c,d) => (Lsh32x64 x (Const64 <t> [c+d]))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    //
    //	-buildmode=default
    //		Listed main packages are built into executables and listed
    //		non-main packages are built into .a files (the default
    //		behavior).
    //
    //	-buildmode=shared
    //		Combine all the listed non-main packages into a single shared
    //		library that will be used when building with the -linkshared
    //		option. Packages named main are ignored.
    //
    //	-buildmode=exe
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"zero":                                 "0\ufe0f\u20e3",
    	"zimbabwe":                             "\U0001f1ff\U0001f1fc",
    	"zipper_mouth_face":                    "\U0001f910",
    	"zombie":                               "\U0001f9df",
    	"zombie_man":                           "\U0001f9df\u200d\u2642\ufe0f",
    	"zombie_woman":                         "\U0001f9df\u200d\u2640\ufe0f",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/data.go

    				st.err.Errorf(s, "missing DWARF section for relocation target %s", ldr.SymName(rs))
    			}
    
    			if target.IsExternal() {
    				// On most platforms, the external linker needs to adjust DWARF references
    				// as it combines DWARF sections. However, on Darwin, dsymutil does the
    				// DWARF linking, and it understands how to follow section offsets.
    				// Leaving in the relocation records confuses it (see
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

    org:leaf:1.0 -> 1.5
    \\--- org:foo:1.0
         \\--- conf
    
    org:leaf:2.0 -> 1.5
    \\--- org:bar:1.0
         \\--- conf
    """
        }
    
        def "forced version combined with constraint"() {
            given:
            mavenRepo.module("org", "leaf", "2.0").publish()
            mavenRepo.module("org", "foo", "1.0").dependsOn('org', 'leaf', '1.0').publish()
    
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_pods.go

    	pod := kubecontainer.Pods(pods).FindPod(podFullName, podUID)
    	return pod.FindContainerByName(containerName), nil
    }
    
    // RunInContainer runs a command in a container, returns the combined stdout, stderr as an array of bytes
    func (kl *Kubelet) RunInContainer(ctx context.Context, podFullName string, podUID types.UID, containerName string, cmd []string) ([]byte, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__scheduling.k8s.io__v1_openapi.json

    "GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\n\nIf this field is specified and the generated name exists,...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 116.6K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__certificates.k8s.io__v1alpha1_openapi.json

    "GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\n\nIf this field is specified and the generated name exists,...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 119K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1alpha1_openapi.json

            "description": "key specifies the audit annotation key. The audit annotation keys of a ValidatingAdmissionPolicy must be unique. The key must be a qualified name ([A-Za-z0-9][-A-Za-z0-9_.]*) no more than 63 bytes in length.\n\nThe key is combined with the resource name of the ValidatingAdmissionPolicy to construct an audit annotation key: \"{ValidatingAdmissionPolicy name}/{key}\".\n\nIf an admission webhook uses the same resource name as this ValidatingAdmissionPolicy and the same audit...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 235.4K bytes
    - Viewed (0)
Back to top