Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 6,743 for OTHER (0.07 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/request/requestinfo_test.go

    		{"GET", "/api/v1/namespaces/other", "get", "api", "", "v1", "other", "namespaces", "", "other", []string{"namespaces", "other"}},
    
    		{"GET", "/api/v1/namespaces/other/pods", "list", "api", "", "v1", "other", "pods", "", "", []string{"pods"}},
    		{"GET", "/api/v1/namespaces/other/pods/foo", "get", "api", "", "v1", "other", "pods", "", "foo", []string{"pods", "foo"}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 15 12:19:21 UTC 2018
    - 11.3K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/JavaProjectOutgoingVariantsIntegrationTest.groovy

            then:
            result.assertTasksExecuted(":other-java:compileJava", ":other-java:processResources", ":other-java:classes", ":other-java:jar", ":java:compileJava", ":java:processResources", ":java:classes", ":java:jar", ":consumer:resolve")
            assertResolveOutput("""
                files: [java.jar, file-dep.jar, other-java.jar, implementation-1.0.jar, runtime-only-1.0.jar]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/consistency/ProjectLocalDependencyResolutionConsistencyIntegrationTest.groovy

            repository {
                'org:foo:1.1'()
            }
    
            buildFile << """
                configurations {
                    other
                    conf.shouldResolveConsistentlyWith(other)
                }
    
                dependencies {
                    conf 'org:foo:1.0'
                    other 'org:foo:1.1'
                }
            """
    
            when:
            repositoryInteractions {
                'org:foo:1.1' {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_get_issue47979.txt

    go 1.17
    
    require example.net/other v0.1.0
    -- indirect1/indirect.go --
    package indirect
    -- indirect2/go.mod --
    module example.net/indirect
    
    go 1.17
    
    require example.net/other v0.2.0
    -- indirect2/indirect.go --
    package indirect
    
    import "example.net/other"
    -- other/go.mod --
    module example.net/other
    
    go 1.17
    -- other/other.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/GradleBuildTaskIntegrationTest.groovy

            buildFile << """
                task otherBuild(type:GradleBuild) {
                    dir = 'other'
                    tasks = ['resolve']
                }
            """
            createDirs("other", "other/a", "other/b")
            file("other/settings.gradle") << """
                include 'a', 'b'
            """
            file("other/build.gradle") << """
                allprojects { configurations.create('default') }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileTreeIntegrationTest.groovy

            file('files/a/two.txt').createFile()
            file('files/b/ignore.txt').createFile()
            file('other/other-one.txt').createFile()
            file('other/a/other-ignore.txt').createFile()
            buildFile """
                def files = fileTree(dir: 'files').plus(fileTree(dir: 'other')).filter {
                    println("checking \${it.name}")
                    !it.name.contains('ignore')
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 7K bytes
    - Viewed (0)
  7. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/java/JavaApplicationOutgoingVariantsIntegrationTest.groovy

            when:
            resolve()
    
            then:
            result.assertTasksExecuted(":other-java:compileJava", ":other-java:processResources", ":other-java:classes", ":other-java:jar", ":java:compileJava", ":java:processResources", ":java:classes", ":java:jar", ":consumer:resolve")
            assertResolveOutput("""
                files: [java.jar, file-dep.jar, other-java.jar, implementation-1.0.jar, runtime-only-1.0.jar]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  8. platforms/core-runtime/files/src/main/java/org/gradle/api/internal/file/pattern/PatternMatcher.java

            public PatternMatcher and(PatternMatcher other) {
                return other;
            }
    
            @Override
            public PatternMatcher or(PatternMatcher other) {
                return this;
            }
        };
    
        public abstract boolean test(String[] segments, boolean isFile);
    
        public PatternMatcher and(final PatternMatcher other) {
            return new And(PatternMatcher.this, other);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  9. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/measure/Amount.java

            }
            return new Amount<>(units.scaleTo(value, other.units).add(other.value), other.units);
        }
    
        public Amount<Q> minus(Amount<Q> other) {
            if (other.value.equals(BigDecimal.ZERO)) {
                return this;
            }
            int diff = units.compareTo(other.units);
            if (diff == 0) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/strict/StrictVersionConstraints.java

            builder.addAll(modules);
            builder.addAll(other.modules);
            return of(builder.build());
        }
    
        public StrictVersionConstraints intersect(StrictVersionConstraints other) {
            if (other.modules == modules) {
                return this;
            }
            if (other == EMPTY) {
                return EMPTY;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.2K bytes
    - Viewed (0)
Back to top