Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 108 for stage1 (0.15 sec)

  1. src/image/jpeg/scan.go

    					if d.progressive {
    						// Save the coefficients.
    						d.progCoeffs[compIndex][by*mxx*hi+bx] = b
    						// At this point, we could call reconstructBlock to dequantize and perform the
    						// inverse DCT, to save early stages of a progressive image to the *image.YCbCr
    						// buffers (the whole point of progressive encoding), but in Go, the jpeg.Decode
    						// function does not return until the entire image is decoded, so we "continue"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 00:46:29 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/volumebinding/binder.go

    	// potentially reduced down to a subset of eligible nodes based on the bound claims which then can be used
    	// in subsequent scheduling stages.
    	//
    	// If eligibleNodes is 'nil', then it indicates that such eligible node reduction cannot be made
    	// and all nodes should be considered.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  3. build/lib/release.sh

    ###############################################################################
    
    # This is where the final release artifacts are created locally
    readonly RELEASE_STAGE="${LOCAL_OUTPUT_ROOT}/release-stage"
    readonly RELEASE_TARS="${LOCAL_OUTPUT_ROOT}/release-tars"
    readonly RELEASE_IMAGES="${LOCAL_OUTPUT_ROOT}/release-images"
    
    KUBE_BUILD_CONFORMANCE=${KUBE_BUILD_CONFORMANCE:-n}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  4. 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)
  5. platforms/core-runtime/BYTECODE-INTERCEPTION-README.md

        
    ```
    
    #### Dynamic Groovy interception
    
    Dynamic Groovy interception is a bit more complicated than Java interception, since types are resolved dynamically.
    Due to that interception happens in two stages:
    1. Bytecode transformation
    2. Runtime interception
    
    Bytecode transformation is done in the same way as for Java, but we intercept special call like `CallSiteArray.$createCallSiteArray` or `IndyInterface.bootstrap()`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 09:22:58 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssagen/pgen.go

    // Copyright 2011 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.
    
    package ssagen
    
    import (
    	"fmt"
    	"internal/buildcfg"
    	"os"
    	"sort"
    	"sync"
    
    	"cmd/compile/internal/base"
    	"cmd/compile/internal/inline"
    	"cmd/compile/internal/ir"
    	"cmd/compile/internal/liveness"
    	"cmd/compile/internal/objw"
    	"cmd/compile/internal/pgoir"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  7. pkg/proxy/winkernel/proxier.go

    	}
    }
    
    // This will cleanup stale load balancers which are pending delete
    // in last iteration. This function will act like a self healing of stale
    // loadbalancer entries.
    func (proxier *Proxier) cleanupStaleLoadbalancers() {
    	i := 0
    	countStaleLB := len(proxier.mapStaleLoadbalancers)
    	if countStaleLB == 0 {
    		return
    	}
    	klog.V(3).InfoS("Cleanup of stale loadbalancers triggered", "LB Count", countStaleLB)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. docs/metrics/prometheus/list.md

    | `minio_notify_target_queue_length`             | Number of events currently staged in the queue_dir configured for the target.                                                               |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 43.3K bytes
    - Viewed (0)
Back to top