Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 184 for iovecs (0.12 sec)

  1. src/cmd/go/internal/toolchain/select.go

    				// See golang.org/issue/62278.
    				if gover.IsLang(goVers) && gover.Compare(goVers, "1.21") >= 0 {
    					gotoolchain += ".0"
    				}
    				gover.Startup.AutoGoVersion = goVers
    				gover.Startup.AutoToolchain = "" // in case we are overriding it for being too old
    			}
    		}
    	}
    
    	// If we are invoked as a target toolchain, confirm that
    	// we provide the expected version and then run.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:25:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/FileCollectionCodec.kt

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.serialize.codecs.core
    
    import org.gradle.api.file.FileCollection
    import org.gradle.api.file.FileTree
    import org.gradle.api.internal.artifacts.configurations.ResolutionBackedFileCollection
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheState.kt

        fun moveFrom(file: File)
        fun stateFileForIncludedBuild(build: BuildDefinition): ConfigurationCacheStateFile
    }
    
    
    internal
    class ConfigurationCacheState(
        private val codecs: Codecs,
        private val stateFile: ConfigurationCacheStateFile,
        private val eventEmitter: BuildOperationProgressEventEmitter,
        private val host: DefaultConfigurationCache.Host
    ) {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  4. docs/pt/docs/async.md

    ### Funções de operação de rota
    
    Quando você declara uma *função de operação de rota* com `def` normal ao invés de `async def`, ela é rodada em uma threadpool externa que então é aguardada, ao invés de ser chamada diretamente (ela poderia bloquear o servidor).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  5. test/typeparam/list2.go

    }
    
    // MoveToFront moves element e to the front of list l.
    // If e is not an element of l, the list is not modified.
    // The element must not be nil.
    func (l *_List[T]) MoveToFront(e *_Element[T]) {
    	if e.list != l || l.root.next == e {
    		return
    	}
    	// see comment in _List.Remove about initialization of l
    	l.move(e, &l.root)
    }
    
    // MoveToBack moves element e to the back of list l.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  6. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/internal/install/DefaultJdkCacheDirectory.java

        // Specifically requesting the GradleUserHomeTemporaryFileProvider to ensure that the temporary files are created on the same file system as the target directory
        // This is a prerequisite for atomic moves in most cases, which are used in the provisionFromArchive method
        private final GradleUserHomeTemporaryFileProvider temporaryFileProvider;
    
        @Inject
        public DefaultJdkCacheDirectory(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 23:47:49 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/peerproxy/peerproxy_handler_test.go

    	//utilruntime.Must(core.AddToScheme(scheme))
    	utilruntime.Must(corev1.AddToScheme(scheme))
    	utilruntime.Must(scheme.SetVersionPriority(corev1.SchemeGroupVersion))
    	codecs := serializer.NewCodecFactory(scheme)
    	sc.Codec = apitesting.TestStorageCodec(codecs, corev1.SchemeGroupVersion)
    	config := *sc.ForResource(schema.GroupResource{Resource: "endpoints"})
    	baseKey := "/" + uuid.New().String() + "/peer-testleases/"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/componentconfigs/configset.go

    // correct group and version
    func (cb *configBase) Marshal(object runtime.Object) ([]byte, error) {
    	return kubeadmutil.MarshalToYamlForCodecs(object, cb.GroupVersion, Codecs)
    }
    
    // Unmarshal attempts to unmarshal a runtime.Object from a document map. If no object is found, no error is returned.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 04 15:36:00 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_discovery_controller.go

    		// apiVersionsForDiscovery after it put in the right ordered
    		PreferredVersion: apiVersionsForDiscovery[0],
    	}
    	c.groupHandler.setDiscovery(version.Group, discovery.NewAPIGroupHandler(Codecs, apiGroup))
    
    	if !foundVersion {
    		c.versionHandler.unsetDiscovery(version)
    
    		if c.resourceManager != nil {
    			c.resourceManager.RemoveGroupVersion(metav1.GroupVersion{
    				Group:   version.Group,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 21 11:40:03 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/DependencyManagementBuildTreeScopeServices.java

                MetadataFileSource.CODEC_ID, new DefaultMetadataFileSourceCodec(moduleIdentifierFactory, fileStoreAndIndexProvider.getArtifactIdentifierFileStore()),
                ModuleDescriptorHashModuleSource.CODEC_ID, new ModuleDescriptorHashCodec()
            );
            return new ModuleSourcesSerializer(codecs);
        }
    
        @Provides
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 18.6K bytes
    - Viewed (0)
Back to top