Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 43 for Regions (0.56 sec)

  1. pilot/pkg/serviceregistry/serviceregistry_test.go

    			pod: func() *v1.Pod {
    				p := basePod.DeepCopy()
    				p.Labels[model.LocalityLabel] = "r.z.s"
    				return p
    			}(),
    			node: baseNode,
    			expected: &core.Locality{
    				Region:  "r",
    				Zone:    "z",
    				SubZone: "s",
    			},
    		},
    		{
    			name: "node specific label",
    			pod:  basePod,
    			node: func() *v1.Node {
    				p := baseNode.DeepCopy()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  2. src/time/time.go

    	name, offset, _, _, _ = t.loc.lookup(t.unixSec())
    	return
    }
    
    // ZoneBounds returns the bounds of the time zone in effect at time t.
    // The zone begins at start and the next zone begins at end.
    // If the zone begins at the beginning of time, start will be returned as a zero Time.
    // If the zone goes on forever, end will be returned as a zero Time.
    // The Location of the returned times will be the same as t.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  3. src/go/printer/testdata/parser.go

    		p.expect(token.ASSIGN)
    		values = p.parseRhsList()
    	}
    	p.expectSemi() // call before accessing p.linecomment
    
    	// Go spec: The scope of a constant or variable identifier declared inside
    	// a function begins at the end of the ConstSpec or VarSpec and ends at
    	// the end of the innermost containing block.
    	// (Global identifiers are resolved in a separate phase after parsing.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top