Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 6,743 for OTHER (0.09 sec)

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

    import "example.com/other"
    
    func F() {
    	dep.G()
    	other.H()
    }
    -- dep/go.mod --
    module example.com/dep
    -- dep/dep.go --
    package dep
    
    func G() {
    }
    -- other/go.mod --
    module example.com/other
    -- other/dep.go --
    package other
    
    func G() {
    }
    -- other2/go.mod --
    module example.com/other
    -- other2/dep.go --
    package other
    
    func G() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 16 17:32:23 UTC 2021
    - 948 bytes
    - Viewed (0)
  2. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/compile/ZincScalaCompilerIntegrationTest.groovy

            file("src/main/scala/Other.scala") << """class Other"""
            file("src/main/scala/Other2.scala") << """class Other2"""
    
            def person = scalaClassFile("Person.class")
            def house = scalaClassFile("House.class")
            def other = scalaClassFile("Other.class")
            // We need an additional file since if >50% of files is changed everything gets recompiled
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  3. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/AbstractCaseVfsRelativePathTest.groovy

            "/var/hello/other"      | 5      | "hello/world/some" | 0
            "/var/hello1/other"     | 5      | "hello/world"      | 1
            "/var/abc/other"        | 5      | "bbc/some"         | -1
            "/var/hello/other"      | 1      | "hello/world/some" | 1
            "/var/hello/other"      | 5      | "hello/world/some" | 0
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/work_use.txt

    go work use -r foo
    cmp go.work go.want_work_r
    
    ! go work use other
    stderr '^go: error reading other'${/}'go.mod: missing module declaration'
    
    go mod edit -C other -module=other
    go work use other
    cmp go.work go.want_work_other
    -- go.work --
    go 1.18
    
    use (
    	foo
    	foo/bar // doesn't exist
    )
    -- go.want_work_r --
    go 1.18
    
    use (
    	./foo
    	./foo/bar/baz
    )
    -- go.want_work_other --
    go 1.18
    
    use (
    	./foo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 504 bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/json/json_test.go

    				Other:    "test",
    				Value:    1,
    			},
    		},
    		// registered types get defaulted by the into object kind
    		{
    			data:        []byte(`{"value":1,"Other":"test"}`),
    			into:        &testDecodable{},
    			typer:       &mockTyper{gvk: &schema.GroupVersionKind{Kind: "Test", Group: "other", Version: "blah"}},
    			expectedGVK: &schema.GroupVersionKind{Kind: "Test", Group: "other", Version: "blah"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 04 15:55:02 UTC 2024
    - 40K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/tasks/util/internal/IntersectionPatternSet.java

        private final PatternSet other;
    
        public IntersectionPatternSet(PatternSet other) {
            super(other);
            this.other = other;
        }
    
        public PatternSet getOther() {
            return other;
        }
    
        @Override
        public Spec<FileTreeElement> getAsSpec() {
            return Specs.intersect(super.getAsSpec(), other.getAsSpec());
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 04 05:29:32 UTC 2020
    - 2.4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/model/DefaultAttributeMatcherTest.groovy

            schema.prefer(usage, "best")
            def other = Attribute.of('other', String)
            schema.attribute(other)
            schema.accept(other, "requested", "compatible")
            schema.accept(other, "requested", "best")
            schema.prefer(other, "best")
    
            def candidate1 = attributes(usage: "best", other: "compatible")
            def candidate2 = attributes(usage: "no match", other: "no match")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 24.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/NodeBackedModelMapSpec.groovy

                thing.other = "[$thing.other]"
            }
    
            when:
            mutate {
                afterEach(action)
                create('a') { other = "a" }
                create('b') { other = "b" }
            }
    
            then:
            realizeChild("a").other == "[a]"
            realizeChild("b").other == "[b]"
        }
    
        static class MutableValue {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 38.3K bytes
    - Viewed (0)
  9. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/contracts/description/booleans/KtPredicates.kt

        override fun equals(other: Any?): Boolean {
            return this === other ||
                    other is KaContractIsInstancePredicateExpression &&
                    other.backingArgument == backingArgument &&
                    other.backingType == backingType &&
                    other.backingIsNegated == backingIsNegated
        }
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/variable_info.cc

    VariableInfo::VariableInfo(VariableInfo&& other)
        : index_(other.index_),
          var_(other.var_),
          definition_stack_trace_(other.definition_stack_trace_),
          lock_held_(other.lock_held_) {
      other.index_ = -1;
      other.var_ = nullptr;
    }
    
    VariableInfo& VariableInfo::operator=(VariableInfo&& other) {
      index_ = other.index_;
      var_ = other.var_;
      lock_held_ = other.lock_held_;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top