Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 100 for marking (0.15 sec)

  1. src/cmd/go/internal/modload/buildlist.go

    		if _, dup := loading.LoadOrStore(dedupKey{m, pruning}, nil); dup {
    			// m has already been enqueued for loading. Since unpruned loading may
    			// follow cycles in the requirement graph, we need to return early
    			// to avoid making the load queue infinitely long.
    			return
    		}
    
    		loadQueue.Add(func() {
    			summary, err := loadOne(m)
    			if err != nil {
    				return // findError will report the error later.
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  2. src/go/printer/nodes.go

    		// name *x.X combines to name*x.X if x.X is not a type element
    		return !isTypeElem(x.X)
    	case *ast.BinaryExpr:
    		return combinesWithName(x.X) && !isTypeElem(x.Y)
    	case *ast.ParenExpr:
    		// name(x) combines but we are making sure at
    		// the call site that x is never parenthesized.
    		panic("unexpected parenthesized expression")
    	}
    	return false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                // all the tasks, then the thread will block waiting for all
                // those subtasks to finish.
                // This ensures the number of running workers is no more than
                // the defined parallism, while making sure the pool will not
                // be exhausted
                //
                return new ThreadPoolExecutor(
                        parallelism, Integer.MAX_VALUE, 0L, TimeUnit.MILLISECONDS, new LinkedBlockingQueue<>()) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 57.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformInputArtifactIntegrationTest.groovy

                    }
                }
    
                abstract class MakeGreen implements TransformAction<TransformParameters.None> {
                    // Make sure empty directories in the input are ignored, making the fingerprint empty.
                    @PathSensitive(PathSensitivity.RELATIVE)
                    @IgnoreEmptyDirectories
                    @InputArtifact
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 27 19:15:32 UTC 2023
    - 51.9K bytes
    - Viewed (0)
  5. src/runtime/pprof/pprof_test.go

    		// contention time could be arbitrarily high when considering
    		// OS scheduler delays, or any other delays from the environment:
    		// time keeps ticking during these delays. By making the upper
    		// bound proportional to the wall time in blockMutexN, in theory
    		// we're accounting for all these possible delays.
    		d := time.Duration(total)
    		lo := time.Duration(N * D * 9 / 10)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ManagedProxyClassGenerator.java

         * <p>
         * The generated class will implement/extend the managed type and will:
         * <ul>
         *     <li>provide implementations for abstract getters and setters that delegate to the backing state</li>
         *     <li>provide a `toString()` implementation</li>
         *     <li>mix-in implementation of {@link ManagedInstance}</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 55.3K bytes
    - Viewed (0)
  7. src/crypto/internal/nistec/p256_asm_ppc64le.s

     *
     * T1 = Z1*Z1
     * T2 = Z2*Z2
     * U1 = X1*T2
     * H  = X2*T1
     * H  = H-U1
     * Z3 = Z1*Z2
     * Z3 = Z3*H << store-out Z3 result reg.. could override Z1, if slices have same backing array
     *
     * S1 = Z2*T2
     * S1 = Y1*S1
     * R  = Z1*T1
     * R  = Y2*R
     * R  = R-S1
     *
     * T1 = H*H
     * T2 = H*T1
     * U1 = U1*T1
     *
     * X3 = R*R
     * X3 = X3-T2
     * T1 = 2*U1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  8. src/crypto/internal/nistec/p256_asm_s390x.s

     *
     * T1 = Z1*Z1
     * T2 = Z2*Z2
     * U1 = X1*T2
     * H  = X2*T1
     * H  = H-U1
     * Z3 = Z1*Z2
     * Z3 = Z3*H << store-out Z3 result reg.. could override Z1, if slices have same backing array
     *
     * S1 = Z2*T2
     * S1 = Y1*S1
     * R  = Z1*T1
     * R  = Y2*R
     * R  = R-S1
     *
     * T1 = H*H
     * T2 = H*T1
     * U1 = U1*T1
     *
     * X3 = R*R
     * X3 = X3-T2
     * T1 = 2*U1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  9. pkg/apis/certificates/validation/validation_test.go

    	if err != nil {
    		t.Fatalf("Error while generating key: %v", err)
    	}
    
    	cert, err := x509.CreateCertificate(gen, template, template, pub, priv)
    	if err != nil {
    		t.Fatalf("Error while making certificate: %v", err)
    	}
    
    	return cert
    }
    
    func mustMakePEMBlock(blockType string, headers map[string]string, data []byte) string {
    	return string(pem.EncodeToMemory(&pem.Block{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 61K bytes
    - Viewed (0)
  10. tensorflow/c/c_api.h

    //
    // Questions left to address:
    // * Might at some point need a way for callers to provide their own Env.
    // * Maybe add TF_TensorShape that encapsulates dimension info.
    //
    // Design decisions made:
    // * Backing store for tensor memory has an associated deallocation
    //   function.  This deallocation function will point to client code
    //   for tensors populated by the client.  So the client can do things
    //   like shadowing a numpy array.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
Back to top