Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 847 for prepending (0.19 sec)

  1. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/reflect/GradleStandardJavaFileManager.java

        @Override
        public Iterable<JavaFileObject> list(Location location, String packageName, Set<JavaFileObject.Kind> kinds, boolean recurse) throws IOException {
            if (hasEmptySourcePaths) {
                // If we are pretending that we don't have a sourcepath, the compiler will
                // look on the classpath for sources. Since we don't want to bring in any
                // sources implicitly from the classpath, we have to ignore source files
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  2. pkg/controller/deployment/recreate_test.go

    			oldRSs: []*apps.ReplicaSet{newRSWithStatus("rs-1", 0, 0, nil)},
    			podMap: map[types.UID][]*v1.Pod{
    				"uid-1": {
    					{
    						Status: v1.PodStatus{
    							Phase: v1.PodPending,
    						},
    					},
    				},
    			},
    			hasOldPodsRunning: true,
    		},
    		{
    			name:   "old RSs with zero status replicas with running pod present",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 08 09:10:50 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  3. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/health/memory/DefaultJvmMemoryInfo.java

         */
        long getMaxMemory() {
            return totalMemory;
        }
    
        /**
         * Currently committed memory of this process in bytes. May return different value depending on how the heap has expanded. The returned value is <= {@link #getMaxMemory()}
         */
        long getCommittedMemory() {
            //querying runtime for each invocation
            return Runtime.getRuntime().totalMemory();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. docs/en/docs/deployment/index.md

    ## Deployment Strategies
    
    There are several ways to do it depending on your specific use case and the tools that you use.
    
    You could **deploy a server** yourself using a combination of tools, you could use a **cloud service** that does part of the work for you, or other possible options.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 16:31:18 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. src/cmd/go/internal/vcweb/insecure.go

    		http.Error(w, "no Host provided in request", http.StatusBadRequest)
    		return
    	}
    
    	// Note that if the handler is wrapped with http.StripPrefix, the prefix
    	// will remain stripped in the redirected URL, preventing redirect loops
    	// if the scheme is already "http".
    
    	u := *req.URL
    	u.Scheme = "http"
    	u.User = nil
    	u.Host = req.Host
    
    	http.Redirect(w, req, u.String(), http.StatusFound)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:22:22 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/utils/fill_quantization_options.h

    // gives a preset method, not a custom method.
    QuantizationOptions FillPresetQuantizationOptions(
        QuantizationOptions quantization_options);
    
    // Returns LogicalResult depending on the look up of activation bit width in the
    // custom quantization method. If such information exists, returns success,
    // otherwise, returns false.
    LogicalResult GetActivationBitWidth(QuantizationOptions quantization_options,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 07:43:59 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. pkg/kubelet/eviction/api/types.go

    	// In case of a single filesystem, containerfs=nodefs.
    	// In case of a image filesystem, containerfs=imagefs.
    	// We will override user settings and set to either imagefs or nodefs depending on configuration.
    	SignalContainerFsAvailable Signal = "containerfs.available"
    	// SignalContainerFsInodesFree is amount of inodes available on filesystem that container runtime uses for container writable layers.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  8. src/internal/abi/stack.go

    	// use it directly. See runtime/stack.go:stackNosplit and
    	// cmd/internal/objabi/stack.go:StackNosplit.
    	StackNosplitBase = 800
    
    	// We have three different sequences for stack bounds checks, depending on
    	// whether the stack frame of a function is small, big, or huge.
    
    	// After a stack split check the SP is allowed to be StackSmall bytes below
    	// the stack guard.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:28:56 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/sys/cpu/cpu_openbsd_arm64.go

    // license that can be found in the LICENSE file.
    
    package cpu
    
    import (
    	"syscall"
    	"unsafe"
    )
    
    // Minimal copy of functionality from x/sys/unix so the cpu package can call
    // sysctl without depending on x/sys/unix.
    
    const (
    	// From OpenBSD's sys/sysctl.h.
    	_CTL_MACHDEP = 7
    
    	// From OpenBSD's machine/cpu.h.
    	_CPU_ID_AA64ISAR0 = 2
    	_CPU_ID_AA64ISAR1 = 3
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  10. src/internal/itoa/itoa.go

    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Simple conversions to avoid depending on strconv.
    
    package itoa
    
    // Itoa converts val to a decimal string.
    func Itoa(val int) string {
    	if val < 0 {
    		return "-" + Uitoa(uint(-val))
    	}
    	return Uitoa(uint(val))
    }
    
    // Uitoa converts val to a decimal string.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 11 02:53:50 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top