Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 591 for Missing (0.15 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/FilteredModuleComponentRepository.java

                        () -> delegate.resolveComponentMetaData(moduleComponentIdentifier, requestMetaData, result),
                    result::missing);
            }
    
            @Override
            public void resolveArtifactsWithType(ComponentArtifactResolveMetadata component, ArtifactType artifactType, BuildableArtifactSetResolveResult result) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/describer/MissingAttributeAmbiguousGraphVariantsFailureDescriber.java

    import java.util.stream.Collectors;
    
    /**
     * A {@link ResolutionFailureDescriber} that describes a {@link VariantAwareAmbiguousResolutionFailure} where
     * there is a single differing attribute between all available variants that is missing from the request.
     * <p>
     * In this situation, we can provide a very brief message pointing to the exact solution needed.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 16:12:53 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/elfexec/elfexec.go

    				return nil, fmt.Errorf(
    					"missing %d bytes of padding after note name", n)
    			} else if err != nil {
    				return nil, err
    			}
    		}
    
    		if uint64(descsz) > uint64(maxNoteSize) {
    			return nil, fmt.Errorf("note desc too long (%d bytes)", descsz)
    		}
    		desc := make([]byte, int(descsz))
    		if _, err := io.ReadFull(r, desc); err == io.EOF {
    			return nil, fmt.Errorf("missing desc (want %d bytes)", len(desc))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  4. guava-testlib/test/com/google/common/testing/NullPointerTesterTest.java

      public void testGoodClass() {
        shouldPass(new PassObject());
      }
    
      private static class FailOneArgDoesntThrowNPE extends PassObject {
        @Override
        public void oneArg(String s) {
          // Fail:  missing NPE for s
        }
      }
    
      public void testFailOneArgDoesntThrowNpe() {
        shouldFail(new FailOneArgDoesntThrowNPE());
      }
    
      private static class FailOneArgThrowsWrongType extends PassObject {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/model/schemas_test.go

    						f.Name, fev)
    				}
    			}
    		}
    	}
    	if ts.ValueValidation != nil {
    		for _, name := range ts.ValueValidation.Required {
    			df, found := cust.FindField(name)
    			if !found {
    				t.Errorf("custom type missing required field. field=%s", name)
    			}
    			if !df.Required {
    				t.Errorf("field marked as required in schema, but optional in type. field=%s", df.Name)
    			}
    		}
    	}
    }
    
    func TestSchemaDeclTypes(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 14K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/StartParameter.java

         * Sets the key refresh flag.
         *
         * @param refresh If set to true, missing keys will be checked again. By default missing keys are cached for 24 hours.
         * @since 6.2
         */
        public void setRefreshKeys(boolean refresh) {
            refreshKeys = refresh;
        }
    
        /**
         * If true, Gradle will try to download missing keys again.
         *
         * @since 6.2
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 06:24:50 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  7. schema/relationship.go

    		schema.err = fmt.Errorf("invalid polymorphic type %v for %v on field %s, missing field %s",
    			relation.FieldSchema, schema, field.Name, polymorphic+"Type")
    	}
    
    	if relation.Polymorphic.PolymorphicID == nil {
    		schema.err = fmt.Errorf("invalid polymorphic type %v for %v on field %s, missing field %s",
    			relation.FieldSchema, schema, field.Name, polymorphic+"ID")
    	}
    
    	if schema.err == nil {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 03:46:59 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  8. src/net/ipsock.go

    //
    // See func Dial for a description of the hostport parameter, and host
    // and port results.
    func SplitHostPort(hostport string) (host, port string, err error) {
    	const (
    		missingPort   = "missing port in address"
    		tooManyColons = "too many colons in address"
    	)
    	addrErr := func(addr, why string) (host, port string, err error) {
    		return "", "", &AddrError{Err: why, Addr: addr}
    	}
    	j, k := 0, 0
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. src/internal/concurrent/hashtriemap_test.go

    		panic("expectMissing must always have a zero value variable")
    	}
    	return func(got V, ok bool) {
    		t.Helper()
    
    		if ok {
    			t.Errorf("expected key %v to be missing from map, got value %v", key, got)
    		}
    		if !ok && got != want {
    			t.Errorf("expected missing key %v to be paired with the zero value; got %v", key, got)
    		}
    	}
    }
    
    func expectLoaded[K, V comparable](t *testing.T, key K, want V) func(got V, loaded bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 16:01:55 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_tidy_compat.txt

    [exec:patch] cmp go.sum go.sum.tidyResult
    
    go list -m all
    cmp stdout m_all.txt
    
    go mod edit -go=1.16
    ! go list -m all
    stderr '^go: example.net/lazy@v0.1.0 requires\n\texample.com/version@v1.0.1: missing go.sum entry for go.mod file; to add it:\n\tgo mod download example.com/version$'
    
    
    -- go.mod --
    // Module m happens to have the exact same build list as what would be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top