Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 113 for blockn (0.61 sec)

  1. src/cmd/compile/internal/syntax/parser.go

    		//
    		// Parentheses are not permitted around T in a composite
    		// literal T{}. If the next token is a {, assume x is a
    		// composite literal type T (it may not be, { could be
    		// the opening brace of a block, but we don't know yet).
    		if p.tok == _Lbrace {
    			keep_parens = true
    		}
    
    		// Parentheses are also not permitted around the expression
    		// in a go/defer statement. In that case, operand is called
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  2. cmd/test-utils_test.go

    			return &k.PublicKey
    		case *ecdsa.PrivateKey:
    			return &k.PublicKey
    		default:
    			return nil
    		}
    	}
    
    	pemBlockForKey := func(priv interface{}) *pem.Block {
    		switch k := priv.(type) {
    		case *rsa.PrivateKey:
    			return &pem.Block{Type: "RSA PRIVATE KEY", Bytes: x509.MarshalPKCS1PrivateKey(k)}
    		case *ecdsa.PrivateKey:
    			b, err := x509.MarshalECPrivateKey(k)
    			if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                                parentCache);
                    }
                };
            }
    
            ExecutorService createExecutor(int parallelism) {
                //
                // We need an executor that will not block.
                // We can't use work stealing, as we are building a graph
                // and this could lead to cycles where a thread waits for
                // a task to finish, then execute another one which waits
    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. src/net/http/transport.go

    // concurrently waits on both the write response and the server's
    // reply.
    type writeRequest struct {
    	req *transportRequest
    	ch  chan<- error
    
    	// Optional blocking chan for Expect: 100-continue (for receive).
    	// If not nil, writeLoop blocks sending request body until
    	// it receives from this chan.
    	continueCh <-chan struct{}
    }
    
    // httpTimeoutError represents a timeout.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    	}
    
    	if strings.HasPrefix(name, "___Z") {
    		// clang extensions
    		block := strings.LastIndex(name, "_block_invoke")
    		if block == -1 {
    			return nil, ErrNotMangledName
    		}
    		a, err := doDemangle(name[4:block], options...)
    		if err != nil {
    			return a, adjustErr(err, 4)
    		}
    		name = strings.TrimPrefix(name[block:], "_block_invoke")
    		if len(name) > 0 && name[0] == '_' {
    			name = name[1:]
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  6. cmd/xl-storage-format-v2.go

    	ErasureM           int               `json:"EcM" msg:"EcM"`                                  // Erasure data blocks
    	ErasureN           int               `json:"EcN" msg:"EcN"`                                  // Erasure parity blocks
    	ErasureBlockSize   int64             `json:"EcBSize" msg:"EcBSize"`                          // Erasure block size
    	ErasureIndex       int               `json:"EcIndex" msg:"EcIndex"`                          // Erasure disk index
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  7. src/testing/testing.go

    	cleanupPc := pc[:n]
    
    	fn := func() {
    		defer func() {
    			c.mu.Lock()
    			defer c.mu.Unlock()
    			c.cleanupName = ""
    			c.cleanupPc = nil
    		}()
    
    		name := callerName(0)
    		c.mu.Lock()
    		c.cleanupName = name
    		c.cleanupPc = cleanupPc
    		c.mu.Unlock()
    
    		f()
    	}
    
    	c.mu.Lock()
    	defer c.mu.Unlock()
    	c.cleanups = append(c.cleanups, fn)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformBuildOperationIntegrationTest.groovy

            getPlannedNodes(0)
            getExecutePlannedStepOperations(0).empty
        }
    
        def "planned transform steps from script plugin buildscript block are not captured"() {
            setupProjectTransformInBuildScriptBlock(true)
    
            when:
            run "consumer:hello"
            then:
            executedAndNotSkipped(":consumer:hello")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 16:27:38 UTC 2024
    - 67.8K bytes
    - Viewed (0)
  9. src/crypto/tls/tls_test.go

    		t.Fatal(err)
    	}
    	keyPEM := pem.EncodeToMemory(&pem.Block{Type: "PRIVATE KEY", Bytes: keyDER})
    	tmpl := &x509.Certificate{
    		SerialNumber: big.NewInt(1),
    		Subject:      pkix.Name{CommonName: "test"},
    	}
    	certDER, err := x509.CreateCertificate(rand.Reader, tmpl, tmpl, key.Public(), key)
    	if err != nil {
    		t.Fatal(err)
    	}
    	certPEM := pem.EncodeToMemory(&pem.Block{Type: "CERTIFICATE", Bytes: certDER})
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  10. cluster/gce/windows/k8s-node-setup.psm1

      buffer_type file
      buffer_path /var/log/fluentd-buffers/kubernetes.containers.buffer
      # Set queue_full action to block because we want to pause gracefully
      # in case of the off-the-limits load instead of throwing an exception
      buffer_queue_full_action block
      # Set the chunk limit conservatively to avoid exceeding the recommended
      # chunk size of 5MB per write request.
      buffer_chunk_limit 512k
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
Back to top