Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 151 for somme (0.05 sec)

  1. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    		c := httpStaticOverlayUpdated.DeepCopy()
    		se := c.Spec.(*networking.ServiceEntry)
    		se.Endpoints = append(se.Endpoints, &networking.WorkloadEntry{
    			Address: "6.6.6.6",
    			Labels:  map[string]string{"some-new-label": "bar"},
    		})
    		return &c
    	}()
    
    	// httpStaticOverlayUpdatedNop is the same as httpStaticOverlayUpdated but with a NOP change
    	httpStaticOverlayUpdatedNop := func() *config.Config {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  2. pilot/pkg/model/virtualservice_test.go

    		buildHTTPService("test-headless.com", visibility.Public, wildcardIP, "not-default", 8888),
    		buildHTTPService("test-headless-someother.com", visibility.Public, wildcardIP, "some-other-ns", 8888),
    		buildHTTPService("a.test1.wildcard.com", visibility.Public, wildcardIP, "default", 8888),
    		buildHTTPService("*.test2.wildcard.com", visibility.Public, wildcardIP, "default", 8888),
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  3. pkg/scheduler/internal/queue/scheduling_queue.go

    	Update(logger klog.Logger, oldPod, newPod *v1.Pod) error
    	Delete(pod *v1.Pod) error
    	// TODO(sanposhiho): move all PreEnqueueCkeck to Requeue and delete it from this parameter eventually.
    	// Some PreEnqueueCheck include event filtering logic based on some in-tree plugins
    	// and it affect badly to other plugins.
    	// See https://github.com/kubernetes/kubernetes/issues/110175
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // Webhooks with side effects MUST implement a reconciliation system, since a request may be
      // rejected by a future step in the admission chain and the side effects therefore need to be undone.
      // Requests with the dryRun attribute will be auto-rejected if they match a webhook with
      // sideEffects == Unknown or Some.
      optional string sideEffects = 6;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/runtime/framework.go

    	var status *framework.Status
    
    	podsAdded := false
    	// We run filters twice in some cases. If the node has greater or equal priority
    	// nominated pods, we run them when those pods are added to PreFilter state and nodeInfo.
    	// If all filters succeed in this pass, we run them again when these
    	// nominated pods are not added. This second pass is necessary because some
    	// filters such as inter-pod affinity may not pass without the nominated pods.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/Project.java

     * </p><p>For example:
     * <pre>
     * defaultTasks('some-task')  // Delegates to Project.defaultTasks()
     * reportsDir = file('reports') // Delegates to Project.file() and the Java Plugin
     * </pre>
     * <p>You can also access the <code>Project</code> instance using the <code>project</code> property. This can make the
     * script clearer in some cases. For example, you could use <code>project.name</code> rather than <code>name</code> to
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/lib.go

    	*ls = ctxt.loader.LookupOrCreateSym(name, ver)
    	ctxt.loader.SetAttrReachable(*ls, true)
    }
    
    // mkArchSymVec is similar to  setArchSyms, but operates on elements within
    // a slice, where each element corresponds to some symbol version.
    func (ctxt *Link) mkArchSymVec(name string, ver int, ls []loader.Sym) {
    	ls[ver] = ctxt.loader.LookupOrCreateSym(name, ver)
    	ctxt.loader.SetAttrReachable(ls[ver], true)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// Webhooks with side effects MUST implement a reconciliation system, since a request may be
    	// rejected by a future step in the admission chain and the side effects therefore need to be undone.
    	// Requests with the dryRun attribute will be auto-rejected if they match a webhook with
    	// sideEffects == Unknown or Some.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  9. cmd/iam.go

    	// Validate that policies associated with roles are defined. If
    	// authZ plugin is set, role policies are just claims sent to
    	// the plugin and they need not exist.
    	//
    	// If some mapped policies do not exist, we print some error
    	// messages but continue any way - they can be fixed in the
    	// running server by creating the policies after start up.
    	for arn, rolePolicies := range m {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  10. src/runtime/pprof/pprof_test.go

    						t.Logf("pN SampleType[%d]; %q != %q", i, have, want)
    						ok = false
    					}
    				}
    
    				// cpuHog1 called below is the primary source of CPU
    				// load, but there may be some background work by the
    				// runtime. Since the OS rusage measurement will
    				// include all work done by the process, also compare
    				// against all samples in our profile.
    				var value time.Duration
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
Back to top