Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for denormalize (0.18 sec)

  1. cmd/kubelet/app/server.go

    }
    
    // newFlagSetWithGlobals constructs a new pflag.FlagSet with global flags registered
    // on it.
    func newFlagSetWithGlobals() *pflag.FlagSet {
    	fs := pflag.NewFlagSet("", pflag.ExitOnError)
    	// set the normalize func, similar to k8s.io/component-base/cli//flags.go:InitFlags
    	fs.SetNormalizeFunc(cliflag.WordSepNormalizeFunc)
    	// explicitly add flags from libs that register global flags
    	options.AddGlobalFlags(fs)
    	return fs
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  2. src/syscall/syscall_windows.go

    	// to Getwd, and we don't want such a general-purpose function to always return a
    	// path with the "\\?\" prefix after Fchdir is called.
    	// The downside is that APIs that do support it will parse the path and try to normalize it,
    	// when it's already normalized.
    	if len(path) >= 4 && path[0] == '\\' && path[1] == '\\' && path[2] == '?' && path[3] == '\\' {
    		path = path[4:]
    	}
    	return SetCurrentDirectory(&path[0])
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/runtime/framework.go

    			errCh.SendErrorWithCancel(err, cancel)
    			return
    		}
    	}, metrics.Score)
    	if err := errCh.ReceiveError(); err != nil {
    		return nil, framework.AsStatus(fmt.Errorf("running Normalize on Score plugins: %w", err))
    	}
    
    	// Apply score weight for each ScorePlugin in parallel,
    	// and then, build allNodePluginScores.
    	f.Parallelizer().Until(ctx, len(nodes), func(index int) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  4. src/cmd/internal/testdir/testdir_test.go

    		if !ok {
    			continue
    		}
    		line, err := strconv.Atoi(lineStr)
    		line--
    		if err != nil || line < 0 || line >= len(lines) {
    			continue
    		}
    		msg = strings.Replace(msg, file, base, -1) // normalize file mentions in error itself
    		msg = strings.TrimLeft(msg, " \t")
    		for _, r := range []string{`\`, `*`, `+`, `?`, `[`, `]`, `(`, `)`} {
    			msg = strings.Replace(msg, r, `\`+r, -1)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/listener_test.go

    								assert.Equal(t, true, hcm.GetSetCurrentClientCertDetails().GetDns(), "dns")
    								assert.Equal(t, true, hcm.GetSetCurrentClientCertDetails().GetUri(), "uri")
    								assert.Equal(t, true, hcm.GetNormalizePath().GetValue(), "normalize path")
    								assert.Equal(t, enableHTTP10(tt.p.Metadata.HTTP10), hcm.GetHttpProtocolOptions().GetAcceptHttp_10(), "http/1.0")
    							},
    						},
    					},
    				})
    			})
    		}
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
Back to top