Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for create_resource_ (0.22 sec)

  1. tensorflow/c/experimental/saved_model/core/revived_types/partially_revived_objects.cc

        TFConcreteFunction* create_resource = nullptr;
    
        // Check all the functions associated with the resource have already been
        // initialized in `revived`
        if (resource_revival_state.create_resource != nullptr) {
          create_resource = revived->concrete_functions.Find(
              resource_revival_state.create_resource->node_id);
          if (create_resource == nullptr) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 09 20:11:48 UTC 2023
    - 23.7K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/cache/DefaultCacheConfigurations.java

        private static final String SNAPSHOT_WRAPPERS = "snapshotWrappers";
        private static final String DOWNLOADED_RESOURCES = "downloadedResources";
        private static final String CREATED_RESOURCES = "createdResources";
        private static final String BUILD_CACHE = "buildCache";
        static final String UNSAFE_MODIFICATION_ERROR = "The property '%s' was modified from an unsafe location (for instance a settings script or plugin).  " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 20:26:37 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/internal/cache/CacheConfigurationsContinuousIntegrationTest.groovy

                        snapshotWrappers.removeUnusedEntriesAfterDays = 5
                        downloadedResources.removeUnusedEntriesAfterDays = 10
                        createdResources.removeUnusedEntriesAfterDays = 5
                        buildCache.removeUnusedEntriesAfterDays = 15
                    }
                }
            """
            settingsFile << """
                caches {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/saved_model/core/saved_model_utils.cc

          // Note(bmzhao): The expected functions saved by a resource object are:
          // "_create_resource", "_initialize", and "_destroy_resource".
          // https://github.com/tensorflow/tensorflow/blob/ad66f588c1666ade8051feb42811fa27b285271c/tensorflow/python/training/tracking/tracking.py#L277-L281
          if (child.local_name() == "_create_resource" &&
              obj_graph.nodes(child.node_id()).kind_case() ==
                  SavedObject::kFunction) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 12 19:17:46 UTC 2023
    - 24K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/crdclient/client_test.go

    		Name:             "name1",
    		Namespace:        "ns1",
    		GroupVersionKind: r.GroupVersionKind(),
    	}
    	createResource(t, store, r, configMeta1)
    
    	configMeta2 := config.Meta{
    		Name:             "name2",
    		Namespace:        "ns2",
    		GroupVersionKind: r.GroupVersionKind(),
    	}
    	createResource(t, store, r, configMeta2)
    
    	retry.UntilSuccessOrFail(t, func() error {
    		l := store.List(r.GroupVersionKind(), "")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 02:58:52 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/cli-runtime/pkg/resource/helper.go

    			return m.createResource(m.RESTClient, m.Resource, namespace, obj, options)
    		}
    		if version != "" {
    			if err := metadataAccessor.SetResourceVersion(obj, ""); err != nil {
    				return nil, err
    			}
    		}
    	}
    
    	return m.createResource(m.RESTClient, m.Resource, namespace, obj, options)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 26 03:45:13 UTC 2022
    - 10.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/create.go

    func CreateNamedResource(r rest.NamedCreater, scope *RequestScope, admission admission.Interface) http.HandlerFunc {
    	return createHandler(r, scope, admission, true)
    }
    
    // CreateResource returns a function that will handle a resource creation.
    func CreateResource(r rest.Creater, scope *RequestScope, admission admission.Interface) http.HandlerFunc {
    	return createHandler(&namedCreaterAdapter{r}, scope, admission, false)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:19:46 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheState.kt

                write(cacheConfigurations.snapshotWrappers.removeUnusedEntriesOlderThan)
                write(cacheConfigurations.downloadedResources.removeUnusedEntriesOlderThan)
                write(cacheConfigurations.createdResources.removeUnusedEntriesOlderThan)
                write(cacheConfigurations.buildCache.removeUnusedEntriesOlderThan)
                write(cacheConfigurations.cleanup)
                write(cacheConfigurations.markingStrategy)
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/jvm/java_plugin.adoc

    * If they use link:{javaApi}/javax/annotation/processing/Filer.html#createResource(javax.tools.JavaFileManager.Location,java.lang.CharSequence,java.lang.CharSequence,javax.lang.model.element.Element++...++)[Filer#createResource],
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 36.1K bytes
    - Viewed (0)
Back to top