Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,734 for createFn (0.11 sec)

  1. src/internal/trace/testdata/generators/go122-create-syscall-with-p.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Tests a G being created from within a syscall.
    //
    // Specifically, it tests a scenerio wherein a C
    // thread is calling into Go, creating a goroutine in
    // a syscall (in the tracer's model). Because the actual
    // m can be reused, it's possible for that m to have never
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. pkg/monitoring/monitoring.go

    	// RecordInt makes an observation of the provided value for the measure.
    	RecordInt(value int64)
    
    	// With creates a new Metric, with the LabelValues provided. This allows creating
    	// a set of pre-dimensioned data for recording purposes. This is primarily used
    	// for documentation and convenience. Metrics created with this method do not need
    	// to be registered (they share the registration of their parent Metric).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 24 03:31:28 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/certificates/v1/generated.proto

      repeated string usages = 5;
    
      // username contains the name of the user that created the CertificateSigningRequest.
      // Populated by the API server on creation and immutable.
      // +optional
      optional string username = 2;
    
      // uid contains the uid of the user that created the CertificateSigningRequest.
      // Populated by the API server on creation and immutable.
      // +optional
      optional string uid = 3;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/execution/taskgraph/RuleTaskBridgingIntegrationTest.groovy

            then:
            fails "foo"
    
            and:
            failure.assertHasCause("Cannot create 'tasks.foo' using creation rule 'MyPlugin#addTask(ModelMap<Task>) > create(foo)' as the rule 'Project.<init>.tasks.foo()' is already registered to create this model element.")
        }
    
        def "registering creation rules to create a task using legacy container DSL that is already defined using container DSL"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 12:57:53 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  5. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/ConnectCompletion.java

    /**
     * A builder that allows a {@link Connection} to be created once the underlying transport with the peer has been
     * established.
     */
    public interface ConnectCompletion {
        /**
         * Creates the connection. Uses the specified serializer for all messages.
         *
         * @return The serializer to use.
         */
        <T> RemoteConnection<T> create(StatefulSerializer<T> serializer);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/KotlinCompositeProviderFactory.kt

    /**
     * [KotlinCompositeProviderFactory] is used by various [KotlinCompositeProvider]s to share code related to provider creation and flattening.
     */
    public class KotlinCompositeProviderFactory<P : KotlinComposableProvider>(
        private val emptyProvider: P,
        private val composeProviders: (List<P>) -> P,
    ) {
        public fun create(providers: List<P>): P = when (providers.size) {
            0 -> emptyProvider
            1 -> providers.single()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/DefaultModelRegistryTest.groovy

            e.cause instanceof DuplicateModelException
            e.cause.message == /Cannot create 'foo.bar' using creation rule 'create foo.bar as Integer' as the rule 'create foo.bar as String' is already registered to create this model element./
        }
    
        def "inputs for creation are bound when inputs already closed"() {
            def action = Mock(Transformer)
    
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 56K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/KotlinScript.kt

         */
        fun copy(configuration: Action<CopySpec>): WorkResult
    
        /**
         * Creates a {@link CopySpec} which can later be used to copy files or create an archive.
         *
         * @return The created [CopySpec]
         */
        fun copySpec(): CopySpec
    
        /**
         * Creates a {@link CopySpec} which can later be used to copy files or create an archive.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  9. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/filesystem/FileSystem.java

        boolean isCaseSensitive();
    
        /**
         * Tells if the file system can create symbolic links. If the answer cannot be determined accurately,
         * <code>false</code> is returned.
         *
         * @return <code>true</code> if the file system can create symbolic links, <code>false</code> otherwise
         */
        boolean canCreateSymbolicLink();
    
        /**
         * Creates a symbolic link to a target file.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  10. pkg/controller/replicaset/replica_set.go

    	if diff < 0 {
    		diff *= -1
    		if diff > rsc.burstReplicas {
    			diff = rsc.burstReplicas
    		}
    		// TODO: Track UIDs of creates just like deletes. The problem currently
    		// is we'd need to wait on the result of a create to record the pod's
    		// UID, which would require locking *across* the create, which will turn
    		// into a performance bottleneck. We should generate a UID for the pod
    		// beforehand and store it via ExpectCreations.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 33.2K bytes
    - Viewed (0)
Back to top