Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 112 for oldname (0.17 sec)

  1. src/encoding/json/fold.go

    // license that can be found in the LICENSE file.
    
    package json
    
    import (
    	"unicode"
    	"unicode/utf8"
    )
    
    // foldName returns a folded string such that foldName(x) == foldName(y)
    // is identical to bytes.EqualFold(x, y).
    func foldName(in []byte) []byte {
    	// This is inlinable to take advantage of "function outlining".
    	var arr [32]byte // large enough for most JSON names
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 27 17:37:27 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. pilot/pkg/model/telemetry_logging.go

    	return al
    }
    
    func tcpGrpcAccessLogFromTelemetry(push *PushContext, prov *meshconfig.MeshConfig_ExtensionProvider_EnvoyTcpGrpcV3LogProvider) *accesslog.AccessLog {
    	logName := TCPEnvoyAccessLogFriendlyName
    	if prov != nil && prov.LogName != "" {
    		logName = prov.LogName
    	}
    
    	filterObjects := envoyWasmStateToLog
    	if len(prov.FilterStateObjectsToLog) != 0 {
    		filterObjects = prov.FilterStateObjectsToLog
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 23K bytes
    - Viewed (0)
  3. tests/integration/pilot/mcs/common/common.go

    		if err != nil {
    			return err
    		}
    
    		// Make sure the CRD exists in each cluster.
    		for _, c := range t.Clusters() {
    			crdName := fmt.Sprintf("%ss.%s", kind, params.Group)
    			if isCRDInstalled(c, crdName, params.Version) {
    				// It's already installed on this cluster - nothing to do.
    				continue
    			}
    
    			// Add/Update the CRD in this cluster...
    			if t.Settings().NoCleanup {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 27 17:09:00 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  4. cmd/object-api-putobject_test.go

    		2: {
    			bucketName: "$this-is-not-valid-too", objName: "obj", inputData: []byte(""),
    			expectedError: BucketNameInvalid{Bucket: "$this-is-not-valid-too"},
    		},
    		3: {bucketName: "a", objName: "obj", inputData: []byte(""), expectedError: BucketNameInvalid{Bucket: "a"}},
    
    		// Case with invalid object names.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_invalid_path.txt

    go get example.com/dotname/.dot
    go get example.com/dotname/use
    go mod tidy
    
    -- mod/go.mod --
    
    -- mod/foo.go --
    package foo
    
    -- m'd/foo.go --
    package mad
    
    -- badname/go.mod --
    
    module .\.
    
    -- badname/foo.go --
    package badname
    
    -- dotname/go.mod --
    module example.com/dotname
    
    go 1.16
    -- dotname/.dot/dot.go --
    package dot
    -- dotname/use/use.go --
    package use
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 02 02:54:20 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/BuildOperationTreeFixture.groovy

            } else {
                // Class.simpleName returns "" for certain anonymous classes and unhelpful things like "Details" for our op interfaces
                String clsName = detailsType.interfaces.length == 0 ? detailsType.name : detailsType.interfaces.first().name
                clsName.substring(clsName.lastIndexOf('.') + 1)
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:20 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. pkg/scheduler/eventhandlers_test.go

    		},
    	} {
    		t.Run(test.Name, func(t *testing.T) {
    			oldNode := &v1.Node{Status: v1.NodeStatus{Allocatable: test.OldAllocatable}}
    			newNode := &v1.Node{Status: v1.NodeStatus{Allocatable: test.NewAllocatable}}
    			changed := nodeAllocatableChanged(newNode, oldNode)
    			if changed != test.Changed {
    				t.Errorf("nodeAllocatableChanged should be %t, got %t", test.Changed, changed)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 10 14:38:54 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/platform/BinaryNativePlatformIntegrationTest.groovy

            if (OperatingSystem.current().windows || Native.get(SystemInfo).architecture == SystemInfo.Architecture.i386) {
                return [name: "x86", altName: "i386"]
            }
            return [name: "x86-64", altName: "amd64"]
        }
    
        @ToBeFixedForConfigurationCache
        def "build binary for a default target platform"() {
            given:
            def arch = currentArch()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/conversion/metrics.go

    }
    
    var _ crConverterInterface = &converterMetric{}
    
    type converterMetric struct {
    	delegate  crConverterInterface
    	latencies *metrics.HistogramVec
    	crdName   string
    }
    
    func (c *converterMetricFactory) addMetrics(crdName string, converter crConverterInterface) (crConverterInterface, error) {
    	c.factoryLock.Lock()
    	defer c.factoryLock.Unlock()
    	metric, exists := c.durations["webhook"]
    	if !exists {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 07 19:34:33 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  10. src/cmd/go/main.go

    			telemetry.Inc("go/subcommand:" + strings.ReplaceAll(cfg.CmdName, " ", "-") + "-" + strings.Join(args[used:], "-"))
    			help.Help(os.Stdout, append(slices.Clip(args[:used]), args[used+1:]...))
    			base.Exit()
    		}
    		helpArg := ""
    		if used > 0 {
    			helpArg += " " + strings.Join(args[:used], " ")
    		}
    		cmdName := cfg.CmdName
    		if cmdName == "" {
    			cmdName = args[0]
    		}
    		telemetry.Inc("go/subcommand:unknown")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:09:11 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top