Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,421 for readings (0.12 sec)

  1. src/cmd/link/internal/ld/dwarf_test.go

    	f := gobuild(t, dir, prog, NoOpt)
    
    	defer f.Close()
    
    	d, err := f.DWARF()
    	if err != nil {
    		t.Fatalf("error reading DWARF: %v", err)
    	}
    
    	rdr := d.Reader()
    	for entry, err := rdr.Next(); entry != nil; entry, err = rdr.Next() {
    		if err != nil {
    			t.Fatalf("error reading DWARF: %v", err)
    		}
    		switch entry.Tag {
    		case dwarf.TagStructType:
    			name, ok := entry.Val(dwarf.AttrName).(string)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 01:38:11 UTC 2024
    - 48.6K bytes
    - Viewed (0)
  2. src/internal/cpu/cpu_ppc64x_other.go

    // license that can be found in the LICENSE file.
    
    //go:build (ppc64 || ppc64le) && !aix && !linux
    
    package cpu
    
    func osinit() {
    	// Other operating systems do not support reading HWCap from auxiliary vector,
    	// reading privileged system registers or sysctl in user space to detect CPU
    	// features at runtime.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 18 06:24:06 UTC 2023
    - 423 bytes
    - Viewed (0)
  3. pkg/test/framework/features/README.md

    ## Writing a Test Stub
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 20 19:13:32 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. pkg/kubelet/prober/prober_manager_test.go

    		{testPodUID, unprobed.Name, readiness}:              true,
    		{testPodUID, probedReady.Name, readiness}:           true,
    		{testPodUID, probedPending.Name, readiness}:         false,
    		{testPodUID, probedUnready.Name, readiness}:         false,
    		{testPodUID, notStartedNoReadiness.Name, readiness}: false,
    		{testPodUID, startedNoReadiness.Name, readiness}:    true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  5. mockwebserver/src/main/kotlin/mockwebserver3/SocketPolicy.kt

       */
      object DisconnectAtEnd : SocketPolicy
    
      /**
       * Request immediate close of connection without even reading the request. Use to simulate buggy
       * SSL servers closing connections in response to unrecognized TLS extensions.
       */
      object DisconnectAtStart : SocketPolicy
    
      /**
       * Close connection after reading the request but before writing the response. Use this to
       * simulate late connection pool failures.
       */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 23 14:31:42 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. src/internal/trace/batch.go

    	gen, err := binary.ReadUvarint(r)
    	if err != nil {
    		return batch{}, gen, fmt.Errorf("error reading batch gen: %w", err)
    	}
    	m, err := binary.ReadUvarint(r)
    	if err != nil {
    		return batch{}, gen, fmt.Errorf("error reading batch M ID: %w", err)
    	}
    	ts, err := binary.ReadUvarint(r)
    	if err != nil {
    		return batch{}, gen, fmt.Errorf("error reading batch timestamp: %w", err)
    	}
    
    	// Read in the size of the batch to follow.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/suggest/converter/KatakanaConverter.java

                        continue;
                    }
    
                    String reading = getReadingFromAttribute(stream);
                    if (Strings.isNullOrEmpty(reading)) {
                        reading = transliterator.transliterate(att.toString());
                    }
                    kanaBuf.append(reading);
                    offset += term.length();
                }
            }
    
            return kanaBuf.toString();
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  8. src/internal/coverage/cfile/testsupport.go

    		cdr, err = decodecounter.NewCounterDataReader(cdf, cf)
    		if err != nil {
    			return fmt.Errorf("reading counter data file %s: %s", cdf, err)
    		}
    		var data decodecounter.FuncPayload
    		for {
    			ok, err := cdr.NextFunc(&data)
    			if err != nil {
    				return fmt.Errorf("reading counter data file %s: %v", cdf, err)
    			}
    			if !ok {
    				break
    			}
    
    			// NB: sanity check on pkg and func IDs?
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  9. pkg/kube/inject/testdata/inject/status_annotations.yaml

          app: status
      template:
        metadata:
          annotations:
            status.sidecar.istio.io/port: "123"
            readiness.status.sidecar.istio.io/initialDelaySeconds: "100"
            readiness.status.sidecar.istio.io/periodSeconds: "200"
            readiness.status.sidecar.istio.io/failureThreshold: "300"
            readiness.status.sidecar.istio.io/applicationPorts: "1,2,3"
          labels:
            app: status
        spec:
          containers:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 16 01:43:48 UTC 2019
    - 701 bytes
    - Viewed (0)
  10. pkg/kube/inject/testdata/inject/status_annotations_zeroport.yaml

          app: status
      template:
        metadata:
          annotations:
            status.sidecar.istio.io/port: "0"
            readiness.status.sidecar.istio.io/initialDelaySeconds: "100"
            readiness.status.sidecar.istio.io/periodSeconds: "200"
            readiness.status.sidecar.istio.io/failureThreshold: "300"
            readiness.status.sidecar.istio.io/applicationPorts: "1,2,3"
          labels:
            app: status
        spec:
          containers:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 25 19:22:24 UTC 2020
    - 699 bytes
    - Viewed (0)
Back to top