Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for oldname (0.66 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    	expectNoDiff(t, "incorrect first page", []example.Pod{*preset[0].storedObj}, out.Items)
    
    	continueFromSecondItem := out.Continue
    
    	// update /second/bar
    	oldName := preset[2].obj.Name
    	newPod := &example.Pod{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: oldName,
    			Labels: map[string]string{
    				"state": "new",
    			},
    		},
    	}
    	if err := store.GuaranteedUpdate(ctx, preset[2].key, preset[2].storedObj, false, nil,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  2. pilot/pkg/model/telemetry_logging_test.go

    	for _, tc := range []struct {
    		name        string
    		logName     string
    		clusterName string
    		hostname    string
    		body        string
    		labels      *structpb.Struct
    		expected    *otelaccesslog.OpenTelemetryAccessLogConfig
    	}{
    		{
    			name:        "default",
    			logName:     OtelEnvoyAccessLogFriendlyName,
    			clusterName: fakeCluster,
    			hostname:    fakeAuthority,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 54K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/init.go

    		}
    	}
    
    	if MainModules.Index(mainModule).goVersion == "" && rs.pruning != workspace {
    		// TODO(#45551): Do something more principled instead of checking
    		// cfg.CmdName directly here.
    		if cfg.BuildMod == "mod" && cfg.CmdName != "mod graph" && cfg.CmdName != "mod why" {
    			// go line is missing from go.mod; add one there and add to derived requirements.
    			v := gover.Local()
    			if opts != nil && opts.TidyGoVersion != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  4. pkg/scheduler/internal/cache/cache_test.go

    			if len(parts) != 2 {
    				t.Fatalf("Invalid extended resource string: \"%s\"", extended)
    			}
    			req[v1.ResourceName(parts[0])] = parts[1]
    		}
    	}
    	podWrapper := st.MakePod().Name(objName).Namespace("node_info_cache_test").UID(objName).Node(nodeName).Containers([]v1.Container{
    		st.MakeContainer().Name("container").Image("pause").Resources(req).ContainerPort(ports).Obj(),
    	})
    	return podWrapper.Obj()
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 01:38:03 UTC 2023
    - 63.8K bytes
    - Viewed (0)
  5. src/cmd/internal/testdir/testdir_test.go

    		tempDirIsGOPATH = true
    		srcDir := filepath.Join(t.gorootTestDir, t.goDirName())
    		modName := filepath.Base(srcDir)
    		gopathSrcDir := filepath.Join(tempDir, "src", modName)
    		runInDir = gopathSrcDir
    
    		if err := overlayDir(gopathSrcDir, srcDir); err != nil {
    			t.Fatal(err)
    		}
    
    		modFile := fmt.Sprintf("module %s\ngo 1.14\n", modName)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    		if len(pathParts) == 2 {
    			r.groupDiscoveryHandler.ServeHTTP(w, req)
    			return
    		}
    
    		r.delegate.ServeHTTP(w, req)
    		return
    	}
    
    	crdName := requestInfo.Resource + "." + requestInfo.APIGroup
    	crd, err := r.crdLister.Get(crdName)
    	if apierrors.IsNotFound(err) {
    		r.delegate.ServeHTTP(w, req)
    		return
    	}
    	if err != nil {
    		utilruntime.HandleError(err)
    		responsewriters.ErrorNegotiated(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
Back to top