Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 40 for Regions (0.17 sec)

  1. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go

    							NumPDBViolations: 1,
    						},
    					},
    				},
    			},
    			expectedNumFilterCalled: []int32{8},
    		},
    	}
    
    	labelKeys := []string{"hostname", "zone", "region"}
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			nodes := make([]*v1.Node, len(tt.nodeNames))
    			fakeFilterRCMap := make(map[string]framework.Code, len(tt.nodeNames))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  2. src/cmd/internal/testdir/testdir_test.go

    func (t test) asmCheck(outStr string, fn string, env buildEnv, fullops map[string][]wantedAsmOpcode) error {
    	// The assembly output contains the concatenated dump of multiple functions.
    	// the first line of each function begins at column 0, while the rest is
    	// indented by a tabulation. These data structures help us index the
    	// output by function.
    	functionMarkers := make([]int, 1)
    	lineFuncMap := make(map[string]int)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  3. src/regexp/syntax/parse.go

    			continue
    		}
    		out = append(out, sub[i])
    	}
    	sub = out
    
    	return sub
    }
    
    // leadingString returns the leading literal string that re begins with.
    // The string refers to storage in re or its children.
    func (p *parser) leadingString(re *Regexp) ([]rune, Flags) {
    	if re.Op == OpConcat && len(re.Sub) > 0 {
    		re = re.Sub[0]
    	}
    	if re.Op != OpLiteral {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  4. plugin/pkg/admission/noderestriction/admission_test.go

    	node.Labels["kubernetes.io/hostname"] = value
    	node.Labels["failure-domain.beta.kubernetes.io/zone"] = value
    	node.Labels["failure-domain.beta.kubernetes.io/region"] = value
    	node.Labels["topology.kubernetes.io/zone"] = value
    	node.Labels["topology.kubernetes.io/region"] = value
    	node.Labels["beta.kubernetes.io/instance-type"] = value
    	node.Labels["node.kubernetes.io/instance-type"] = value
    	node.Labels["beta.kubernetes.io/os"] = value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 73.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/debug.go

    		// first non-zero-width op (for other blocks).
    		for idx := 0; idx < len(b.Values); idx++ {
    			v := b.Values[idx]
    			if blockPrologComplete(v) {
    				break
    			}
    			// Consider only "lifetime begins at block start" ops.
    			if !mustBeFirst(v) && v.Op != OpArg {
    				continue
    			}
    			slots := state.valueNames[v.ID]
    			reg, _ := state.f.getHome(v.ID).(*Register)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  6. pkg/controller/daemon/daemon_controller.go

    		return
    	}
    
    	// Delete expectations for the DaemonSet so if we create a new one with the same name it starts clean
    	dsc.expectations.DeleteExpectations(logger, key)
    
    	dsc.queue.Add(key)
    }
    
    // Run begins watching and syncing daemon sets.
    func (dsc *DaemonSetsController) Run(ctx context.Context, workers int) {
    	defer utilruntime.HandleCrash()
    
    	dsc.eventBroadcaster.StartStructuredLogging(3)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  7. pkg/volume/testing/testing.go

    	return f.Plugin.GetVolumeName(spec)
    }
    
    // CanSupport tests whether the plugin supports a given volume specification by
    // testing volume spec name begins with plugin name or not.
    // This is useful to choose plugin by volume in testing.
    func (f *FakeBasicVolumePlugin) CanSupport(spec *volume.Spec) bool {
    	return strings.HasPrefix(spec.Name(), f.GetPluginName())
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  8. common/scripts/metallb-native.yaml

                  passiveMode:
                    description: 'Mark session as passive: a passive session will not
                      attempt to start the connection and will wait for control packets
                      from peer before it begins replying.'
                    type: boolean
                  receiveInterval:
                    description: The minimum interval that this system is capable of receiving
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:31 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

            failure.assertHasDescription("Execution failed for task ':copy'.")
        }
    
        // region duplicates in compressed files
        def "encountering duplicates in a zipTree vs an unzipped dir with DuplicateStrategy.FAIL should give a clear error"() {
            given: "a directory with a file"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/elf.go

     * SUCH DAMAGE.
     *
     */
    
    /*
     * ELF definitions that are independent of architecture or word size.
     */
    
    /*
     * Note header.  The ".note" section contains an array of notes.  Each
     * begins with this header, aligned to a word boundary.  Immediately
     * following the note header is n_namesz bytes of name, padded to the
     * next word boundary.  Then comes n_descsz bytes of descriptor, again
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
Back to top