Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 3,177 for Missing (0.2 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/attributes/AttributeValue.java

            }
    
            @Override
            public Object get() {
                throw new UnsupportedOperationException("get() should not be called on a missing attribute value");
            }
        };
    
        /**
         * Checks if this attribute value is present, defined as not {@code null} and not {@link AttributeValue#MISSING}
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 12:57:50 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/CachingClassLoader.java

                return (Class<?>) cachedValue;
            } else if (cachedValue == MISSING) {
                throw new ClassNotFoundException(name);
            }
            Class<?> result;
            try {
                result = super.loadClass(name, resolve);
            } catch (ClassNotFoundException e) {
                loadedClasses.putIfAbsent(name, MISSING);
                throw e;
            }
            loadedClasses.putIfAbsent(name, result);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/DefaultFileChange.java

            return new DefaultFileChange(path, ChangeTypeInternal.ADDED, title, FileType.Missing, currentFileType, normalizedPath);
        }
    
        public static DefaultFileChange removed(String path, String title, FileType previousFileType, String normalizedPath) {
            return new DefaultFileChange(path, ChangeTypeInternal.REMOVED, title, previousFileType, FileType.Missing, normalizedPath);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/RepositoryChainComponentMetaDataResolver.java

            queue.addAll(missing);
            missing.clear();
            return findBestMatch(queue, failures, missing);
        }
    
        @Nullable
        private RepositoryChainModuleResolution findBestMatch(LinkedList<ComponentMetaDataResolveState> queue, Collection<Throwable> failures, Collection<ComponentMetaDataResolveState> missing) {
            RepositoryChainModuleResolution best = null;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:24 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. tests/integration/telemetry/util.go

    			t.Logf("Series %d (source: %v/%v)", i, full[i]["namespace"], full[i]["pod"])
    			missing := []string{}
    			for k, v := range m {
    				if v == "" {
    					missing = append(missing, k)
    				} else {
    					t.Logf("  for label %q, wanted %q but got %q", k, query.Labels[k], v)
    				}
    			}
    			if len(missing) > 0 {
    				t.Logf("  missing labels: %v", missing)
    			}
    		}
    
    	default:
    		t.Fatalf("PromDiff expects Vector, got %v", v.Type())
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 13 16:30:22 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/admission.go

    		return a.initializationErr
    	}
    	if a.stopCh == nil {
    		return fmt.Errorf("missing stopCh")
    	}
    	if a.quotaAccessor == nil {
    		return fmt.Errorf("missing quotaAccessor")
    	}
    	if a.quotaAccessor.client == nil {
    		return fmt.Errorf("missing quotaAccessor.client")
    	}
    	if a.quotaAccessor.lister == nil {
    		return fmt.Errorf("missing quotaAccessor.lister")
    	}
    	if a.quotaConfiguration == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 23 10:34:50 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  7. tests/test_security_oauth2_optional.py

            {
                "detail": [
                    {
                        "type": "missing",
                        "loc": ["body", "grant_type"],
                        "msg": "Field required",
                        "input": None,
                    },
                    {
                        "type": "missing",
                        "loc": ["body", "username"],
                        "msg": "Field required",
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/cel/library/library_compatibility_test.go

    	missing := knownFunctions.Difference(functionNames)
    
    	if len(unexpected) != 0 {
    		t.Errorf("Expected all functions in the libraries to be assigned to a kubernetes release, but found the unexpected function names: %v", unexpected)
    	}
    	if len(missing) != 0 {
    		t.Errorf("Expected all functions in the libraries to be assigned to a kubernetes release, but found the missing function names: %v", missing)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 12:03:04 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  9. src/internal/types/testdata/fixedbugs/issue49179.go

    type myInt int
    type myFloat float64
    
    func _() {
    	_ = f1[int]
    	_ = f1[myInt /* ERROR "possibly missing ~ for int in int | string" */]
    	_ = f2[myInt]
    	_ = f2[myFloat /* ERROR "possibly missing ~ for float64 in ~int | string | float64" */]
    	var x myInt
    	f3 /* ERROR "myInt does not satisfy int (possibly missing ~ for int in int)" */ (x)
    }
    
    // test case from the issue
    
    type SliceConstraint[T any] interface {
    	[]T
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 964 bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/test_util.cc

        }
      }
      if (!expected_shapes.empty()) {
        std::vector<string> missing;
        missing.reserve(expected_shapes.size());
        for (const auto& entry : expected_shapes) {
          missing.push_back(entry.first);
        }
        return errors::InvalidArgument("Missing shapes for nodes: ",
                                       absl::StrJoin(missing, ","));
      }
      return absl::OkStatus();
    }
    
    void DeviceSetup::AddDevicesAndSetUp(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 11:36:41 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top