Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 127 for reachable (0.27 sec)

  1. src/go/internal/gcimporter/iimport.go

    	case types.IsComplex:
    		re := r.mpfloat(b)
    		im := r.mpfloat(b)
    		val = constant.BinaryOp(re, token.ADD, constant.MakeImag(im))
    
    	default:
    		errorf("unexpected type %v", typ) // panics
    		panic("unreachable")
    	}
    
    	return
    }
    
    func intSize(b *types.Basic) (signed bool, maxBytes uint) {
    	if (b.Info() & types.IsUntyped) != 0 {
    		return true, 64
    	}
    
    	switch b.Kind() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  2. src/net/http/request_test.go

    			}
    			t.Logf("Got log: %s", log.Bytes())
    			return nil
    		}
    	}
    	tests := [...]struct {
    		readable int
    		limit    int64
    	}{
    		0: {99, 100},
    		1: {100, 100},
    		2: {101, 100},
    	}
    	for i, tt := range tests {
    		rc := MaxBytesReader(nil, io.NopCloser(bytes.NewReader(make([]byte, tt.readable))), tt.limit)
    		if err := isSticky(rc); err != nil {
    			t.Errorf("%d. error: %v", i, err)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 18:42:34 UTC 2024
    - 44K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/DependencyInsightReportTask.java

            dependencyGraphRenderer.complete();
        }
    
        private void renderBuildScanHint(StyledTextOutput output) {
            output.println();
            output.text("A web-based, searchable dependency report is available by adding the ");
            output.withStyle(UserInput).format("--%s", StartParameterBuildOptions.BuildScanOption.LONG_OPTION);
            output.println(" option.");
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/shell.go

    				out = replacePrefix(out, wdir, reldir)
    			}
    		}
    		dirP := filepath.Dir(dir)
    		if dir == dirP {
    			break
    		}
    		dir = dirP
    	}
    
    	// Fix up output referring to cgo-generated code to be more readable.
    	// Replace x.go:19[/tmp/.../x.cgo1.go:18] with x.go:19.
    	// Replace *[100]_Ctype_foo with *[100]C.foo.
    	// If we're using -x, assume we're debugging and want the full dump, so disable the rewrite.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  5. src/runtime/metrics/doc.go

    with a new key and a new "kind."
    
    # Metric key format
    
    As mentioned earlier, metric keys are strings. Their format is simple and well-defined,
    designed to be both human and machine readable. It is split into two components,
    separated by a colon: a rooted path and a unit. The choice to include the unit in
    the key is motivated by compatibility: if a metric's unit changes, its semantics likely
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:43 UTC 2024
    - 20K bytes
    - Viewed (0)
  6. src/syscall/exec_linux_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	gid, err := strconv.ParseInt(u.Gid, 0, 32)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	// Copy the test binary to a temporary location which is readable by nobody.
    	f, err := os.CreateTemp("", "gotest")
    	if err != nil {
    		t.Fatal(err)
    	}
    	t.Cleanup(func() {
    		f.Close()
    		os.Remove(f.Name())
    	})
    
    	testenv.MustHaveExec(t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/profile/profile.go

    		if unit == "" {
    			switch key {
    			case "alignment", "request":
    				numLabelUnits[key] = "bytes"
    			default:
    				numLabelUnits[key] = key
    			}
    		}
    	}
    
    	// Copy ignored units into more readable format
    	unitsIgnored := make(map[string][]string, len(ignoredUnits))
    	for key, values := range ignoredUnits {
    		units := make([]string, len(values))
    		i := 0
    		for unit := range values {
    			units[i] = unit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  8. pkg/kubelet/volumemanager/cache/desired_state_of_world.go

    	if pluginName != csi.CSIPluginName {
    		return pluginName
    	}
    
    	// It's a CSI volume
    	driverName, err := csi.GetCSIDriverName(spec)
    	if err != nil {
    		// In theory this is unreachable - such volume would not pass validation.
    		klog.V(4).ErrorS(err, "failed to get CSI driver name from volume spec")
    		driverName = "unknown"
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/patch.go

    			return nil, false, err
    		}
    		p.mechanism = &smpPatcher{
    			patcher:            p,
    			schemaReferenceObj: schemaReferenceObj,
    			fieldManager:       scope.FieldManager,
    		}
    	// this case is unreachable if ServerSideApply is not enabled because we will have already rejected the content type
    	case types.ApplyPatchType:
    		p.mechanism = &applyPatcher{
    			fieldManager:        scope.FieldManager,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  10. apache-maven/src/main/appended-resources/licenses/CDDL+GPLv2-with-classpath-exception.txt

    under Section 2) in object code or executable form under the terms of
    Sections 1 and 2 above provided that you also do one of the following:
    
        a) Accompany it with the complete corresponding machine-readable
        source code, which must be distributed under the terms of Sections 1
        and 2 above on a medium customarily used for software interchange; or,
    
        b) Accompany it with a written offer, valid for at least three
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 38.5K bytes
    - Viewed (0)
Back to top