Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 65 for notFound (0.21 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/repositories/DefaultRepositoryContentDescriptorTest.groovy

            details.componentId >> DefaultModuleComponentIdentifier.newId(fooMod, version)
            action.execute(details)
    
            then:
            if (excluded) {
                1 * details.notFound()
            } else {
                0 * details.notFound()
            }
    
    
            when:
            descriptor = new DefaultRepositoryContentDescriptor({ "my-repo" }, new VersionParser())
            descriptor."include$method"(expr)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/metrics/metrics_test.go

    			apiserver_envelope_encryption_kms_operations_latency_seconds_bucket{grpc_status_code="NotFound",method_name="/v2alpha1.KeyManagementService/Encrypt",provider_name="providerName",le="0.0016"} 0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 09 22:31:32 UTC 2023
    - 31.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/metaobject/BeanDynamicObject.java

                }
                return false;
            }
    
            public DynamicInvokeResult getProperty(String name) {
                if (!includeProperties) {
                    return DynamicInvokeResult.notFound();
                }
    
                maybeAddCallInterceptionHooksToMetaclass(name);
                MetaClass metaClass = getMetaClass();
    
                // First look for a property known to the meta-class
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/extensibility/DefaultConvention.java

                if (extension != null) {
                    return DynamicInvokeResult.found(extension);
                }
                if (plugins == null) {
                    return DynamicInvokeResult.notFound();
                }
                for (Object object : plugins.values()) {
                    DynamicObject dynamicObject = asDynamicObject(object).withNotImplementsMissing();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  5. src/main/config/openapi/openapi-user.yaml

            '400':
              $ref: '#/components/responses/BadRequest'
            '401':
              $ref: '#/components/responses/Unauthorized'
            '404':
              $ref: '#/components/responses/NotFound'
            '500':
              $ref: '#/components/responses/InternalServerError'
    
      /documents/all:
        get:
          tags:
            - search
          summary: Finds all documents by query
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 09 06:31:27 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  6. src/net/conf_test.go

    		// the default criteria for dns, but then has a
    		// non-standard but redundant notfound=return for the
    		// files.
    		{
    			name:   "debian_squeeze",
    			c:      &conf{},
    			resolv: defaultResolvConf,
    			nss:    nssStr(t, "hosts: dns [success=return notfound=continue unavail=continue tryagain=continue] files [notfound=return]"),
    			hostTests: []nssHostTest{
    				{"x.com", "myhostname", hostLookupDNSFiles},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:46:36 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  7. internal/grid/msg_gen.go

    		zb0001--
    		field, err = dc.ReadMapKeyPtr()
    		if err != nil {
    			err = msgp.WrapError(err)
    			return
    		}
    		switch msgp.UnsafeString(field) {
    		case "nf":
    			z.NotFound, err = dc.ReadBool()
    			if err != nil {
    				err = msgp.WrapError(err, "NotFound")
    				return
    			}
    		case "e":
    			if dc.IsNil() {
    				err = dc.ReadNil()
    				if err != nil {
    					err = msgp.WrapError(err, "Err")
    					return
    				}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Nov 21 01:09:35 UTC 2023
    - 18.8K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/saved_model/core/tf_saved_model_api.cc

          internal::FindNodeAtPath(function_path, bundle_.saved_object_graph());
      if (!node.has_value()) {
        return errors::NotFound("No saved object found at path ", function_path);
      }
    
      *function = revived_objects_.concrete_functions.Find(*node);
      if (*function == nullptr) {
        return errors::NotFound("No function found at path ", function_path);
      }
    
      return Status();
    }
    
    Status TFSavedModelAPI::GetFunctions(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 09:34:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. pkg/proxy/util/nodeport_addresses_test.go

    func checkNodeIPs(expected sets.Set[string], actual []net.IP) error {
    	notFound := expected.Clone()
    	extra := sets.New[string]()
    	for _, ip := range actual {
    		str := ip.String()
    		if notFound.Has(str) {
    			notFound.Delete(str)
    		} else {
    			extra.Insert(str)
    		}
    	}
    	if len(notFound) != 0 || len(extra) != 0 {
    		return fmt.Errorf("not found: %v, extra: %v", notFound.UnsortedList(), extra.UnsortedList())
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/isolated/IsolationScheme.java

                if (result == null) {
                    return notFound(serviceType);
                }
                return result;
            }
    
            @Override
            public Object get(Type serviceType, Class<? extends Annotation> annotatedWith) throws UnknownServiceException, ServiceLookupException {
                return notFound(serviceType);
            }
    
            private Object notFound(Type serviceType) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 12.5K bytes
    - Viewed (0)
Back to top