Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 7,381 for _get (0.31 sec)

  1. src/cmd/go/testdata/script/mod_get_pseudo.txt

    go get ...test@d7ae1e4
    go list -m all
    stdout '^github.com/rsc/legacytest v2\.0\.0\+incompatible$'
    
    # v1.2.1-0.pseudo
    go get ...test@d2d4c3e
    go list -m all
    stdout '^github.com/rsc/legacytest v1\.2\.1-0\.\d{14}-d2d4c3ea6623$'
    
    # v1.2.0
    go get ...test@9f6f860
    go list -m all
    stdout '^github.com/rsc/legacytest v1\.2\.0$'
    
    # v1.1.0-pre.0.pseudo
    go get ...test@fb3c628
    go list -m all
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. android/guava-testlib/src/com/google/common/collect/testing/testers/MapGetTester.java

      public void testGet_yes() {
        assertEquals("get(present) should return the associated value", v0(), get(k0()));
      }
    
      public void testGet_no() {
        assertNull("get(notPresent) should return null", get(k3()));
      }
    
      @MapFeature.Require(ALLOWS_NULL_KEY_QUERIES)
      public void testGet_nullNotContainedButAllowed() {
        assertNull("get(null) should return null", get(null));
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 09 20:10:38 UTC 2018
    - 2.9K bytes
    - Viewed (0)
  3. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/internal/PmdInvoker.groovy

                }
                if (parameters.incrementalAnalysis.get()) {
                    PmdInvoker.assertUnsupportedIncrementalAnalysis(version)
                }
                antPmdArgs['threads'] = parameters.threads.get()
            } else {
                // 6.+
                if (parameters.incrementalAnalysis.get()) {
                    antPmdArgs["cacheLocation"] = parameters.incrementalCacheFile.get().asFile
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  4. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/InMemoryDecoratedCacheTest.groovy

                start {
                    result1 = cache.get("key", producer, Stub(Runnable))
                }
                start {
                    result2 = cache.get("key", producer, Stub(Runnable))
                }
                start {
                    result3 = cache.get("key", producer, Stub(Runnable))
                }
                start {
                    result4 = cache.get("key", producer, Stub(Runnable))
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  5. cluster/addons/rbac/cluster-autoscaler/cluster-autoscaler-rbac.yaml

        verbs: ["get", "list", "watch"]
      - apiGroups: ["apps"]
        resources: ["daemonsets", "replicasets"]
        verbs: ["get", "list", "watch"]
      - apiGroups: ["apps"]
        resources: ["statefulsets"]
        verbs: ["get", "list", "watch"]
      - apiGroups: ["batch"]
        resources: ["jobs"]
        verbs: ["get", "list", "watch"]
      - apiGroups: ["policy"]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 12 16:56:45 UTC 2020
    - 2K bytes
    - Viewed (0)
  6. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/KtFe10DescFunctionSymbol.kt

            }
    
        override val isExternal: Boolean
            get() = withValidityAssertion { descriptor.isExternal }
    
        override val isInline: Boolean
            get() = withValidityAssertion { descriptor.isInline }
    
        override val isOverride: Boolean
            get() = withValidityAssertion { descriptor.isExplicitOverride }
    
        override val isInfix: Boolean
            get() = withValidityAssertion {
                if (descriptor.isDynamic()) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/test/groovy/org/gradle/language/internal/DefaultBinaryCollectionTest.groovy

            container.add(binary2)
    
            when:
            container.realizeNow()
    
            then:
            container.get() == [binary1, binary2] as Set
        }
    
        def "cannot get elements before collection is realized"() {
            given:
            container.add(Stub(SwiftBinary))
    
            when:
            container.get()
    
            then:
            def e = thrown(IllegalStateException)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_get_deprecated.txt

    # 'go get pkg' should not show a deprecation message for an unrelated module.
    go get ./use/nothing
    ! stderr 'module.*is deprecated'
    
    # 'go get pkg' should show a deprecation message for the module providing pkg.
    go get example.com/deprecated/a
    stderr '^go: module example.com/deprecated/a is deprecated: in example.com/deprecated/a@v1.9.0$'
    go get example.com/deprecated/a@v1.0.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  9. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/testdata/cluster-roles.yaml

        - get
        - list
        - watch
      - apiGroups:
        - policy
        resources:
        - poddisruptionbudgets
        - poddisruptionbudgets/status
        verbs:
        - get
        - list
        - watch
      - apiGroups:
        - networking.k8s.io
        resources:
        - ingresses
        - ingresses/status
        - networkpolicies
        verbs:
        - get
        - list
        - watch
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 08:11:08 UTC 2023
    - 24.1K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/DefaultGccPlatformToolChain.java

            return tools.get(toolType);
        }
    
        public Collection<GccCommandLineToolConfigurationInternal> getTools() {
            return tools.values();
        }
    
        public Collection<GccCommandLineToolConfigurationInternal> getCompilers() {
            return Arrays.asList(tools.get(ToolType.C_COMPILER), tools.get(ToolType.CPP_COMPILER), tools.get(ToolType.OBJECTIVEC_COMPILER), tools.get(ToolType.OBJECTIVECPP_COMPILER));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.2K bytes
    - Viewed (0)
Back to top