Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 124 for elided (0.14 sec)

  1. src/crypto/tls/ticket.go

    		SignedCertificateTimestamps: s.scts,
    	})
    	b.AddUint24LengthPrefixed(func(b *cryptobyte.Builder) {
    		for _, chain := range s.verifiedChains {
    			b.AddUint24LengthPrefixed(func(b *cryptobyte.Builder) {
    				// We elide the first certificate because it's always the leaf.
    				if len(chain) == 0 {
    					b.SetError(errors.New("tls: internal error: empty verified chain"))
    					return
    				}
    				for _, cert := range chain[1:] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  2. tools/istio-iptables/pkg/capture/run.go

    	if redirectDNS {
    		if cfg.cfg.CaptureAllDNS {
    			// Redirect all TCP dns traffic on port 53 to the agent on port 15053
    			// This will be useful for the CNI case where pod DNS server address cannot be decided.
    			cfg.ruleBuilder.AppendRule(iptableslog.UndefinedCommand,
    				constants.ISTIOOUTPUT, constants.NAT,
    				"-p", constants.TCP,
    				"--dport", "53",
    				"-j", constants.REDIRECT,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  3. src/syscall/syscall_aix.go

    func (w WaitStatus) StopSignal() Signal {
    	if !w.Stopped() {
    		return -1
    	}
    	return Signal(w>>8) & 0xFF
    }
    
    func (w WaitStatus) Exited() bool { return w&0xFF == 0 }
    func (w WaitStatus) ExitStatus() int {
    	if !w.Exited() {
    		return -1
    	}
    	return int((w >> 8) & 0xFF)
    }
    
    func (w WaitStatus) Signaled() bool { return w&0x40 == 0 && w&0xFF != 0 }
    func (w WaitStatus) Signal() Signal {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:50:55 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  4. src/net/http/cgi/host.go

    		h.printf("cgi: missing required Content-Type in headers")
    		return
    	}
    
    	if statusCode == 0 {
    		statusCode = http.StatusOK
    	}
    
    	// Copy headers to rw's headers, after we've decided not to
    	// go into handleInternalRedirect, which won't want its rw
    	// headers to have been touched.
    	for k, vv := range headers {
    		for _, v := range vv {
    			rw.Header().Add(k, v)
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/inline/inlheur/scoring.go

    		case hairyval > bud && score <= bud:
    			// Promoted: we would not have inlined it before, but
    			// after score adjustment we decided to inline.
    			st = "PROMOTED"
    			expinl = true
    		case hairyval <= bud && score > bud:
    			// Demoted: we would have inlined it before, but after
    			// score adjustment we decided not to inline.
    			st = "DEMOTED"
    		}
    		inlined := cs.aux&csAuxInlined != 0
    		indprom := false
    		if cs.parent != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    //   when there is a single thread.
    //
    //   2. The parent process clone()s a sub-process and runs the death
    //   test in it; the sub-process exits with code 0 at the end of the
    //   death test, if it hasn't exited already.
    //
    //   3. The parent process waits for the sub-process to terminate.
    //
    //   4. The parent process checks the exit code and error message of
    //   the sub-process.
    //
    // Examples:
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/partially_decluster_pass.cc

    // cluster.
    Status PartiallyDeclusterGraph(Graph* graph) {
      // When deciding whether to decluster a particular node, we base our decision
      // on if we've decided that some of its consumers have to be declustered too.
      // Iterating the graph in post-order guarantees that consumers have been
      // visited before producers.
      std::vector<Node*> post_order;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 11:36:41 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/helpers.go

    		}
    	}
    
    	// If non of them is set, treat it as root.
    	return new(int64), "", nil
    }
    
    // isInitContainerFailed returns true under the following conditions:
    // 1. container has exited and exitcode is not zero.
    // 2. container is in unknown state.
    // 3. container gets OOMKilled.
    func isInitContainerFailed(status *kubecontainer.Status) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 12K bytes
    - Viewed (0)
  9. src/internal/trace/summary.go

    	StartTime    Time   // Timestamp of the first time it started running. 0 if the goroutine never ran.
    	EndTime      Time   // Timestamp of when the goroutine exited. 0 if the goroutine never exited.
    
    	// List of regions in the goroutine, sorted based on the start time.
    	Regions []*UserRegionSummary
    
    	// Statistics of execution time during the goroutine execution.
    	GoroutineExecStats
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  10. src/net/http/responsecontroller_test.go

    		defer wg.Done()
    		defer pw.Close()
    		pw.Write([]byte("one"))
    		select {
    		case <-readc:
    		case <-donec:
    			select {
    			case <-readc:
    			default:
    				t.Errorf("server handler unexpectedly exited without closing readc")
    				return
    			}
    		}
    		pw.Write([]byte("two"))
    	}()
    	defer wg.Wait()
    	res, err := cst.c.Post(cst.ts.URL, "text/foo", pr)
    	if err == nil {
    		defer res.Body.Close()
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 19:20:31 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top