Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 57 for Forbid (0.14 sec)

  1. staging/src/k8s.io/api/batch/v1/generated.proto

      optional int64 startingDeadlineSeconds = 2;
    
      // Specifies how to treat concurrent executions of a Job.
      // Valid values are:
      //
      // - "Allow" (default): allows CronJobs to run concurrently;
      // - "Forbid": forbids concurrent runs, skipping next run if previous run hasn't finished yet;
      // - "Replace": cancels currently running job and replaces it with a new one
      // +optional
      optional string concurrencyPolicy = 3;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  2. LICENSE

    it if you want it; that you can change the software and use pieces of
    it in new free programs; and that you are informed that you can do
    these things.
    
      To protect your rights, we need to make restrictions that forbid
    distributors to deny you these rights or to ask you to surrender these
    rights.  These restrictions translate to certain responsibilities for
    you if you distribute copies of the library or if you modify it.
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Jan 18 20:25:38 UTC 2016
    - 25.8K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/types_test.go

    				{"TCP", "127.0.0.1", 79},
    				{"UDP", "127.0.0.1", 80},
    				{"TCP", "127.0.0.1", 81},
    				{"TCP", "127.0.0.1", 82},
    				// this might not make sense in real case, but the struct doesn't forbid it.
    				{"TCP", "0.0.0.0", 79},
    				{"UDP", "0.0.0.0", 80},
    				{"TCP", "0.0.0.0", 81},
    				{"TCP", "0.0.0.0", 82},
    				{"TCP", "0.0.0.0", 0},
    				{"TCP", "0.0.0.0", -1},
    			},
    			length: 8,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 45.9K bytes
    - Viewed (0)
  4. pilot/pkg/model/sidecar.go

    				continue
    			}
    			// this is a non-zero port match
    			return e
    		}
    	}
    
    	// This should never be reached unless user explicitly set an empty array for egress
    	// listeners which we actually forbid
    	return nil
    }
    
    // HasIngressListener returns if the sidecar scope has ingress listener set
    func (sc *SidecarScope) HasIngressListener() bool {
    	if sc == nil {
    		return false
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:23 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  5. apache-maven/src/main/appended-resources/licenses/CDDL+GPLv2-with-classpath-exception.txt

    want it, that you can change the software or use pieces of it in new
    free programs; and that you know you can do these things.
    
    To protect your rights, we need to make restrictions that forbid anyone
    to deny you these rights or to ask you to surrender the rights. These
    restrictions translate to certain responsibilities for you if you
    distribute copies of the software, or if you modify it.
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/cpumanager/policy_test.go

    			1:  {CoreID: 0, SocketID: 1, NUMANodeID: 1},
    			2:  {CoreID: 1, SocketID: 1, NUMANodeID: 1},
    			3:  {CoreID: 1, SocketID: 1, NUMANodeID: 1},
    			4:  {CoreID: 2, SocketID: 1, NUMANodeID: 1},
    			5:  {CoreID: 2, SocketID: 1, NUMANodeID: 1},
    			6:  {CoreID: 3, SocketID: 0, NUMANodeID: 0},
    			7:  {CoreID: 3, SocketID: 0, NUMANodeID: 0},
    			8:  {CoreID: 4, SocketID: 0, NUMANodeID: 0},
    			9:  {CoreID: 4, SocketID: 0, NUMANodeID: 0},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 24 20:49:58 UTC 2021
    - 40.6K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/cpumanager/topology/topology_test.go

    					45: {CoreID: 5, SocketID: 0, NUMANodeID: 0},
    					46: {CoreID: 6, SocketID: 0, NUMANodeID: 0},
    					47: {CoreID: 7, SocketID: 0, NUMANodeID: 0},
    					48: {CoreID: 8, SocketID: 0, NUMANodeID: 0},
    					49: {CoreID: 9, SocketID: 0, NUMANodeID: 0},
    					50: {CoreID: 10, SocketID: 0, NUMANodeID: 1},
    					51: {CoreID: 11, SocketID: 0, NUMANodeID: 1},
    					52: {CoreID: 12, SocketID: 0, NUMANodeID: 1},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 03 16:26:09 UTC 2023
    - 31.7K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/cpumanager/cpu_manager_test.go

    			NumSockets: 2,
    			NumCores:   4,
    			CPUDetails: map[int]topology.CPUInfo{
    				0: {CoreID: 0, SocketID: 0},
    				1: {CoreID: 1, SocketID: 0},
    				2: {CoreID: 2, SocketID: 0},
    				3: {CoreID: 3, SocketID: 0},
    				4: {CoreID: 0, SocketID: 1},
    				5: {CoreID: 1, SocketID: 1},
    				6: {CoreID: 2, SocketID: 1},
    				7: {CoreID: 3, SocketID: 1},
    			},
    		},
    		0,
    		cpuset.New(),
    		topologymanager.NewFakeManager(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 06 13:16:15 UTC 2023
    - 42.9K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/reflect/ClassPathTest.java

            .testEquals();
      }
    
      @AndroidIncompatible // Android forbids null parent ClassLoader
      public void testClassPathEntries_emptyURLClassLoader_noParent() {
        assertThat(ClassPath.getClassPathEntries(new URLClassLoader(new URL[0], null)).keySet())
            .isEmpty();
      }
    
      @AndroidIncompatible // Android forbids null parent ClassLoader
      public void testClassPathEntries_URLClassLoader_noParent() throws Exception {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 26 14:02:27 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  10. cmd/batch-handlers_gen.go

    		case "v":
    			z.Version, err = dc.ReadInt()
    			if err != nil {
    				err = msgp.WrapError(err, "Version")
    				return
    			}
    		case "jid":
    			z.JobID, err = dc.ReadString()
    			if err != nil {
    				err = msgp.WrapError(err, "JobID")
    				return
    			}
    		case "jt":
    			z.JobType, err = dc.ReadString()
    			if err != nil {
    				err = msgp.WrapError(err, "JobType")
    				return
    			}
    		case "st":
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 06 20:27:52 UTC 2024
    - 18.6K bytes
    - Viewed (0)
Back to top