Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,054 for central (0.16 sec)

  1. maven-api-impl/src/test/java/org/apache/maven/internal/impl/standalone/ApiRunner.java

            DefaultSession session = new DefaultSession(
                    rsession,
                    system,
                    List.of(lookup.lookup(RepositoryFactory.class)
                            .createRemote("central", "https://repo.maven.apache.org/maven2")),
                    null,
                    lookup);
    
            Settings settings = session.getService(SettingsBuilder.class)
                    .build(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  2. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AbstractSmokeTest.groovy

            static errorProne = "3.1.0"
    
            // https://plugins.gradle.org/plugin/com.google.protobuf
            static protobufPlugin = "0.9.4"
    
            // https://central.sonatype.com/artifact/com.google.protobuf/protobuf-java/versions
            static protobufTools = "4.26.1"
    
            // https://plugins.gradle.org/plugin/org.gradle.test-retry
            static testRetryPlugin = "1.5.8"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 08:14:32 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/internal/transformation/impl/DefaultConsumerPomBuilder.java

                        .relocation(model.getDistributionManagement().getRelocation())
                        .build());
            }
            // only keep repositories other than 'central'
            builder.pluginRepositories(pruneRepositories(model.getPluginRepositories()));
            builder.repositories(pruneRepositories(model.getRepositories()));
            return builder;
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/ResolutionFailureHandler.java

    import java.util.ArrayList;
    import java.util.Collection;
    import java.util.Collections;
    import java.util.List;
    import java.util.Optional;
    import java.util.Set;
    
    /**
     * Provides a central location for handling failures encountered during
     * each stage of the variant selection process during dependency resolution.
     *
     * All variant selection failures encountered during selection by the {@link GraphVariantSelector} or
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  5. src/runtime/mheap.go

    		base, end uintptr
    	}
    
    	// central free lists for small size classes.
    	// the padding makes sure that the mcentrals are
    	// spaced CacheLinePadSize bytes apart, so that each mcentral.lock
    	// gets its own cache line.
    	// central is indexed by spanClass.
    	central [numSpanClasses]struct {
    		mcentral mcentral
    		pad      [(cpu.CacheLinePadSize - unsafe.Sizeof(mcentral{})%cpu.CacheLinePadSize) % cpu.CacheLinePadSize]byte
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  6. docs/es/docs/async.md

    Y como la mayor parte del tiempo de ejecución lo coge el trabajo real (en lugar de esperar), y el trabajo en un sistema lo realiza una <abbr title = "Central Processing Unit. En español: Unidad Central de Procesamiento."> CPU </abbr>, a estos problemas se les llama "<abbr title="En español: atado a CPU.">CPU bound</abbr>".
    
    ---
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  7. src/internal/reflectlite/value.go

    	}
    	return 0
    }
    
    func (v Value) typ() *abi.Type {
    	// Types are either static (for compiler-created types) or
    	// heap-allocated but always reachable (for reflection-created
    	// types, held in the central map). So there is no need to
    	// escape types. noescape here help avoid unnecessary escape
    	// of v.
    	return (*abi.Type)(abi.NoEscape(unsafe.Pointer(v.typ_)))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:01:54 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  8. pkg/security/security.go

    	// Normally initialized from ISTIO_META_CLUSTER_ID - after a tortuous journey it
    	// makes its way into the ClusterID metadata of Citadel gRPC request to create the cert.
    	// Didn't find much doc - but I suspect used for 'central cluster' use cases - so should
    	// match the cluster name set in the MC setup.
    	ClusterID string
    
    	// The type of Elliptical Signature algorithm to use
    	// when generating private keys. Currently only ECDSA is supported.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  9. docs/en/docs/advanced/security/oauth2-scopes.md

    Because the `SecurityScopes` will have all the scopes declared by dependants, you can use it to verify that a token has the required scopes in a central dependency function, and then declare different scope requirements in different *path operations*.
    
    They will be checked independently for each *path operation*.
    
    ## Check it
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 17:37:28 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  10. src/runtime/mgc.go

    // combined into a two-page span.
    //
    // It's critical to ensure that no operations proceed on unswept spans (that would corrupt
    // mark bits in GC bitmap). During GC all mcaches are flushed into the central cache,
    // so they are empty. When a goroutine grabs a new span into mcache, it sweeps it.
    // When a goroutine explicitly frees an object or sets a finalizer, it ensures that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
Back to top