Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 3,177 for Missing (0.23 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenBrokenRemoteResolveIntegrationTest.groovy

        void "reports and recovers from missing module"() {
            given:
            def repo = mavenHttpRepo("repo1")
            def module = repo.module("group", "projectA", "1.2").publish()
    
            buildFile << """
    repositories {
        maven { url "${repo.uri}"}
    }
    configurations { missing }
    dependencies {
        missing 'group:projectA:1.2'
    }
    task showMissing {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 12K bytes
    - Viewed (0)
  2. tests/test_tutorial/test_bigger_applications/test_main_an.py

                        "type": "value_error.missing",
                    },
                ]
            }
        )
    
    
    def test_put_no_header(client: TestClient):
        response = client.put("/items/foo")
        assert response.status_code == 422, response.text
        assert response.json() == IsDict(
            {
                "detail": [
                    {
                        "type": "missing",
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  3. test/interface/embed3.dir/embed1.go

    	var i1 interface{} = X1{}
    	check(func() { _ = i1.(p.I1) }, "interface conversion: main.X1 is not p.I1: missing method Foo")
    
    	var i2 interface{} = X2{}
    	check(func() { _ = i2.(p.I2) }, "interface conversion: main.X2 is not p.I2: missing method foo")
    
    	var i3 interface{} = X3{}
    	check(func() { _ = i3.(p.I2) }, "interface conversion: main.X3 is not p.I2: missing method foo")
    
    	var i4 interface{} = X4{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 06 09:09:59 UTC 2019
    - 1.6K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/changes/DefaultFileChangeTest.groovy

            FileType.RegularFile | FileType.RegularFile | "has changed"
            FileType.Missing     | FileType.RegularFile | "has been added"
            FileType.Missing     | FileType.Directory   | "has been added"
            FileType.RegularFile | FileType.Missing     | "has been removed"
            FileType.Directory   | FileType.Missing     | "has been removed"
        }
    
        def "change message for ChangeType #fileChange.change is '#message'"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. pkg/api/storage/util_test.go

    		t.Run("podspec_"+tc.name, func(t *testing.T) {
    			actual := sets.New[string](GetWarningsForStorageClass(tc.template)...)
    			expected := sets.New[string](tc.expected...)
    			for _, missing := range sets.List[string](expected.Difference(actual)) {
    				t.Errorf("missing: %s", missing)
    			}
    			for _, extra := range sets.List[string](actual.Difference(expected)) {
    				t.Errorf("extra: %s", extra)
    			}
    		})
    
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 11:04:08 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_list_e_readonly.txt

    # to individual missing packages.
    # Verifies golang.org/issue/34829.
    go list -mod=readonly -e -deps -f '{{if .Error}}{{.ImportPath}}: {{.Error}}{{end}}' .
    stdout 'example.com/missing: use.go:3:8: cannot find module providing package example.com/missing: import lookup disabled by -mod=readonly'
    
    -- go.mod --
    module example.com/m
    
    go 1.14
    
    -- use.go --
    package use
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 06 23:44:28 UTC 2019
    - 449 bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ValueSupplier.java

         * A {@link #isMissing() missing} value never carries a side effect.
         */
        interface Value<T> {
            Value<Object> MISSING = new Missing<>();
            Value<Void> SUCCESS = new Present<>(null);
    
            static <T> Value<T> ofNullable(@Nullable T value) {
                if (value == null) {
                    return MISSING.asType();
                }
                return new Present<>(value);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 20:31:29 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/listenertest/match.go

    		}
    	} else {
    		if missing := sets.SortedList(sets.New(want.NetworkFilters...).Difference(sets.New(haveNetwork...))); len(missing) > 0 {
    			t.Fatalf("%v/%v: missing network filters: %v, have %v", have.Name, haveType, missing, haveNetwork)
    		}
    		if missing := sets.SortedList(sets.New(want.HTTPFilters...).Difference(sets.New(haveHTTP...))); len(missing) > 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/embed_fmt.txt

    go fmt xnofmt.go
    cmp xnofmt.go xfmt.ref
    ! go build xnofmt.go
    stderr 'xnofmt.go:5:12: pattern missing.txt: no matching files found'
    
    -- xnofmt.go --
    package p
    
    import "embed"
    
    //go:embed missing.txt
    var X  embed.FS
    -- xfmt.ref --
    package p
    
    import "embed"
    
    //go:embed missing.txt
    var X embed.FS
    -- go.mod --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 19 20:58:35 UTC 2021
    - 348 bytes
    - Viewed (0)
  10. maven-model-builder/src/test/resources/poms/validation/raw-model/profile-activation-file-with-allowed-expressions.xml

          <activation>
            <file>
              <exists>${basedir}/test.txt</exists>
            </file>
          </activation>
        </profile>
        <profile>
          <id>missing-basedir</id>
          <activation>
            <file>
              <missing>${basedir}/test.txt</missing>
            </file>
          </activation>
        </profile>
    
        <profile>
          <id>exists-project-basedir</id>
          <activation>
            <file>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 13:13:07 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top