Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 87 for wastage (0.3 sec)

  1. docs/ja/docs/deployment/docker.md

    # (1)
    FROM python:3.9 as requirements-stage
    
    # (2)
    WORKDIR /tmp
    
    # (3)
    RUN pip install poetry
    
    # (4)
    COPY ./pyproject.toml ./poetry.lock* /tmp/
    
    # (5)
    RUN poetry export -f requirements.txt --output requirements.txt --without-hashes
    
    # (6)
    FROM python:3.9
    
    # (7)
    WORKDIR /code
    
    # (8)
    COPY --from=requirements-stage /tmp/requirements.txt /code/requirements.txt
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 44.3K bytes
    - Viewed (0)
  2. pkg/proxy/winkernel/proxier.go

    			if len(nodePortEndpoints) > 0 && endpointsAvailableForLB {
    				// If all endpoints are in terminating stage, then no need to create Node Port LoadBalancer
    				hnsLoadBalancer, err := hns.getLoadBalancer(
    					nodePortEndpoints,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredBuildInputsIntegrationTest.groovy

                "file.separator",
                "path.separator",
                "line.separator",
                "user.name",
                "user.home"
                // Not java.io.tmpdir and user.dir at this stage
            ]
        }
    
        def "system property set at the configuration phase is restored when running from cache"() {
            given:
            buildFile("""
                $propertySetter
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 36K bytes
    - Viewed (0)
  4. build/common.sh

    readonly KUBECTL_BASE_IMAGE="${KUBECTL_BASE_IMAGE:-$KUBE_GORUNNER_IMAGE}"
    
    # This is the image used in a multi-stage build to apply capabilities to Docker-wrapped binaries.
    readonly KUBE_BUILD_SETCAP_IMAGE="${KUBE_BUILD_SETCAP_IMAGE:-$KUBE_BASE_IMAGE_REGISTRY/setcap:$__default_setcap_version}"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  5. src/net/http/transport.go

    	// It is split into two stages - head[headPos:] and tail.
    	// popFront is trivial (headPos++) on the first stage, and
    	// pushBack is trivial (append) on the second stage.
    	// If the first stage is empty, popFront can swap the
    	// first and second stages to remedy the situation.
    	//
    	// This two-stage split is analogous to the use of two lists
    	// in Okasaki's purely functional queue but without the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  6. src/runtime/iface.go

    	// Maybe update the cache, so the next time the generated code
    	// doesn't need to call into the runtime.
    	if cheaprand()&1023 != 0 {
    		// Only bother updating the cache ~1 in 1000 times.
    		// This ensures we don't waste memory on switches, or
    		// switch arguments, that only happen a few times.
    		return case_, tab
    	}
    	// Load the current cache.
    	oldC := (*abi.InterfaceSwitchCache)(atomic.Loadp(unsafe.Pointer(&s.Cache)))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  7. src/encoding/gob/type.go

    	if ui, ok := userTypeCache.Load(rt); ok {
    		return ui.(*userTypeInfo), nil
    	}
    
    	// Construct a new userTypeInfo and atomically add it to the userTypeCache.
    	// If we lose the race, we'll waste a little CPU and create a little garbage
    	// but return the existing value anyway.
    
    	ut := new(userTypeInfo)
    	ut.base = rt
    	ut.user = rt
    	// A type that is just a cycle of pointers (such as type T *T) cannot
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/macho.go

    }
    
    type MachoLoad struct {
    	type_ uint32
    	data  []uint32
    }
    
    type MachoPlatform int
    
    /*
     * Total amount of space to reserve at the start of the file
     * for Header, PHeaders, and SHeaders.
     * May waste some.
     */
    const (
    	INITIAL_MACHO_HEADR = 4 * 1024
    )
    
    const (
    	MACHO_CPU_AMD64                      = 1<<24 | 7
    	MACHO_CPU_386                        = 7
    	MACHO_SUBCPU_X86                     = 3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  9. src/reflect/type.go

    	abi.StructType
    }
    
    func pkgPath(n abi.Name) string {
    	if n.Bytes == nil || *n.DataChecked(0, "name flag field")&(1<<2) == 0 {
    		return ""
    	}
    	i, l := n.ReadVarint(1)
    	off := 1 + i + l
    	if n.HasTag() {
    		i2, l2 := n.ReadVarint(off)
    		off += i2 + l2
    	}
    	var nameOff int32
    	// Note that this field may not be aligned in memory,
    	// so we cannot use a direct int32 assignment here.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/load.go

    		// consistent with ld.pkgs: we don't need to pass ld.pkgs to updateRoots
    		// again. (That would waste time looking for changes that we have already
    		// applied.)
    		var noPkgs []*loadPkg
    		// We also know that we're going to call updateRequirements again next
    		// iteration so we don't need to also update it here. (That would waste time
    		// computing a "direct" map that we'll have to recompute later anyway.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
Back to top