Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of about 10,000 for storing (0.23 sec)

  1. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/registry/PersistentDaemonRegistryTest.groovy

        }
    
        Address address(int i = addressCounter++) {
            new TestAddress(i.toString())
        }
    
        private static class TestAddress implements InetEndpoint {
    
            final String displayName
    
            TestAddress(String displayName) {
                this.displayName = displayName
            }
    
            boolean equals(o) {
                displayName == o.displayName
            }
    
            int hashCode() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/modulecache/artifacts/DefaultModuleArtifactCacheTest.groovy

        FileAccessTracker fileAccessTracker = Stub(FileAccessTracker)
        String persistentCacheFile = "cacheFile"
        Path commonRootPath = folder.createDir("common").toPath()
    
        @Subject DefaultModuleArtifactCache index = new DefaultModuleArtifactCache(persistentCacheFile, timeProvider, cacheAccessCoordinator, fileAccessTracker, commonRootPath)
    
        def "storing null artifactFile not supported"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:50 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/root.go

    	addresses Addresses
    
    	serializer runtime.NegotiatedSerializer
    
    	// Map storing information about all groups to be exposed in discovery response.
    	// The map is from name to the group.
    	lock      sync.RWMutex
    	apiGroups map[string]metav1.APIGroup
    	// apiGroupNames preserves insertion order
    	apiGroupNames []string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 22:44:49 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/execution/ProfileActivation.java

         * @param activeProfileIds A {@link List} of profile IDs that must be activated.
         * @deprecated Use {@link #activateOptionalProfile(String)} or {@link #activateRequiredProfile(String)} instead.
         */
        @Deprecated
        public void overwriteActiveProfiles(List<String> activeProfileIds) {
            getActiveProfiles().forEach(this.activations::remove);
            activeProfileIds.forEach(this::activateOptionalProfile);
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  5. common-protos/k8s.io/apimachinery/pkg/runtime/generated.proto

    // 		MyPlugin runtime.Object `json:"myPlugin"`
    // 	}
    //
    // 	type PluginA struct {
    // 		AOption string `json:"aOption"`
    // 	}
    //
    // // External package:
    //
    // 	type MyAPIObject struct {
    // 		runtime.TypeMeta `json:",inline"`
    // 		MyPlugin runtime.RawExtension `json:"myPlugin"`
    // 	}
    //
    // 	type PluginA struct {
    // 		AOption string `json:"aOption"`
    // 	}
    //
    // // On the wire, the JSON will look something like this:
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/runtime/generated.proto

    // 		MyPlugin runtime.Object `json:"myPlugin"`
    // 	}
    //
    // 	type PluginA struct {
    // 		AOption string `json:"aOption"`
    // 	}
    //
    // // External package:
    //
    // 	type MyAPIObject struct {
    // 		runtime.TypeMeta `json:",inline"`
    // 		MyPlugin runtime.RawExtension `json:"myPlugin"`
    // 	}
    //
    // 	type PluginA struct {
    // 		AOption string `json:"aOption"`
    // 	}
    //
    // // On the wire, the JSON will look something like this:
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/VisitableURLClassLoader.java

        // TODO:lptr When we drop Java 8 support we can switch to using ClassLoader.getName() instead of storing our own
        private final String name;
    
        public VisitableURLClassLoader(String name, ClassLoader parent, Collection<URL> urls) {
            this(name, urls.toArray(new URL[0]), parent);
        }
    
        protected VisitableURLClassLoader(String name, ClassLoader parent, ClassPath classPath) {
            this(name, classPath.getAsURLArray(), parent);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/classpath/InPlaceClasspathBuilder.java

            private final ZipArchiveOutputStream outputStream;
            private final Set<String> dirs = new HashSet<>();
    
            public ZipEntryBuilder(ZipArchiveOutputStream outputStream) {
                this.outputStream = outputStream;
            }
    
            @Override
            public void put(String name, byte[] content, CompressionMethod compressionMethod) throws IOException {
                maybeAddParent(name);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 14:05:09 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/namespacecontroller.go

    	// sequence of delays between successive queuing of a namespace.
    	//
    	// 5ms, 10ms, 20ms, 40ms, 80ms
    	maxRetries = 5
    )
    
    var configMapLabel = map[string]string{"istio.io/config": "true"}
    
    // NamespaceController manages reconciles a configmap in each namespace with a desired set of data.
    type NamespaceController struct {
    	caBundleWatcher *keycertbundle.Watcher
    
    	queue controllers.Queue
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. src/runtime/cgo/gcc_libinit.c

    #include <errno.h>
    #include <stdio.h>
    #include <stdlib.h>
    #include <string.h> // strerror
    #include <time.h>
    #include "libcgo.h"
    #include "libcgo_unix.h"
    
    static pthread_cond_t runtime_init_cond = PTHREAD_COND_INITIALIZER;
    static pthread_mutex_t runtime_init_mu = PTHREAD_MUTEX_INITIALIZER;
    static int runtime_init_done;
    
    // pthread_g is a pthread specific key, for storing the g that binded to the C thread.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 01:07:18 UTC 2024
    - 5.8K bytes
    - Viewed (0)
Back to top