Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 93 for NORMALIZED (0.18 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/OutputScrapingExecutionResult.java

            return new OutputScrapingExecutionResult(LogContent.of(output), LogContent.of(error), true);
        }
    
        /**
         * @param output The build stdout content.
         * @param error The build stderr content. Must have normalized line endings.
         */
        protected OutputScrapingExecutionResult(LogContent output, LogContent error, boolean includeBuildSrc) {
            this.output = output;
            this.error = error;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. operator/cmd/mesh/install.go

    	}
    	icps, err := kubeClient.GetIstioVersions(context.TODO(), ns)
    	if err != nil {
    		return err
    	}
    	if len(*icps) != 0 {
    		var icpTags []string
    		var icpTag string
    		// create normalized tags for multiple control plane revisions
    		for _, icp := range *icps {
    			if icp.Revision != revision {
    				continue
    			}
    			tagVer, err := GetTagVersion(icp.Info.GitTag)
    			if err != nil {
    				return err
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:35 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  3. pkg/kubelet/apis/config/validation/validation.go

    	}
    
    	if !utilfs.IsPathClean(kc.PodLogsDir) {
    		allErrors = append(allErrors, fmt.Errorf("invalid configuration: pod logs path %q must be normalized", kc.PodLogsDir))
    	}
    
    	// Since pod logs path is used in metrics, make sure it contains only ASCII characters.
    	for _, c := range kc.PodLogsDir {
    		if c > unicode.MaxASCII {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 17:13:59 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  4. pkg/kubelet/config/config.go

    	// contains the list of all configured sources
    	sourcesLock sync.Mutex
    	sources     sets.Set[string]
    }
    
    // NewPodConfig creates an object that can merge many configuration sources into a stream
    // of normalized updates to a pod configuration.
    func NewPodConfig(mode PodConfigNotificationMode, recorder record.EventRecorder, startupSLIObserver podStartupSLIObserver) *PodConfig {
    	updates := make(chan kubetypes.PodUpdate, 50)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/filters/authentication_test.go

    		},
    		"user case-insensitive": {
    			nameHeaders:    []string{"x-REMOTE-user"},             // configured headers can be case-insensitive
    			requestHeaders: http.Header{"X-Remote-User": {"Bob"}}, // the parsed headers are normalized by the http package
    		},
    
    		"groups none": {
    			nameHeaders:  []string{"X-Remote-User"},
    			groupHeaders: []string{"X-Remote-Group"},
    			requestHeaders: http.Header{
    				"X-Remote-User": {"Bob"},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/internal/language/parse.go

    	}
    	return t, scan.err
    }
    
    // parseTag parses language, script, region and variants.
    // It returns a Tag and the end position in the input that was parsed.
    // If doNorm is true, then <lang>-<extlang> will be normalized to <extlang>.
    func parseTag(scan *scanner, doNorm bool) (t Tag, end int) {
    	var e error
    	// TODO: set an error if an unknown lang, script or region is encountered.
    	t.LangID, e = getLangID(scan.token)
    	scan.setError(e)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/s390x/asmz.go

    const (
    	op_A       uint32 = 0x5A00 // FORMAT_RX1        ADD (32)
    	op_AD      uint32 = 0x6A00 // FORMAT_RX1        ADD NORMALIZED (long HFP)
    	op_ADB     uint32 = 0xED1A // FORMAT_RXE        ADD (long BFP)
    	op_ADBR    uint32 = 0xB31A // FORMAT_RRE        ADD (long BFP)
    	op_ADR     uint32 = 0x2A00 // FORMAT_RR         ADD NORMALIZED (long HFP)
    	op_ADTR    uint32 = 0xB3D2 // FORMAT_RRF1       ADD (long DFP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/util/proxy/streamtunnel_test.go

    		assert.Equal(t, "101 Switching Protocols", testConnConstructor.resp.Status)
    		assert.Equal(t, strings.ReplaceAll(responseHeaders, "\r", ""), string(testConnConstructor.initializeWriteConn.written), "only normalized headers are written in initializeWrite")
    		assert.Equal(t, responseBody, string(testConnConstructor.mockConn.written), "extra data written to net.Conn")
    	})
    
    	// Content-Length handling
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 02:21:50 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

    *  3: `tensor` is interpreted as RGB.
    *  4: `tensor` is interpreted as RGBA.
    
    The images have the same number of channels as the input tensor. For float
    input, the values are normalized one image at a time to fit in the range
    `[0, 255]`.  `uint8` values are unchanged.  The op uses two different
    normalization algorithms:
    
    *  If the input values are all positive, they are rescaled so the largest one
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  10. src/archive/tar/writer.go

    	return fw.nb
    }
    
    // sparseFileWriter is a fileWriter for writing data to a sparse file entry.
    type sparseFileWriter struct {
    	fw  fileWriter  // Underlying fileWriter
    	sp  sparseDatas // Normalized list of data fragments
    	pos int64       // Current position in sparse file
    }
    
    func (sw *sparseFileWriter) Write(b []byte) (n int, err error) {
    	overwrite := int64(len(b)) > sw.logicalRemaining()
    	if overwrite {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.6K bytes
    - Viewed (0)
Back to top