Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 86 of 86 for Roots (0.38 sec)

  1. pkg/registry/flowcontrol/ensurer/flowschema_test.go

    				indexer.Add(test.current)
    			}
    
    			ops := NewFlowSchemaOps(client, flowcontrollisters.NewFlowSchemaLister(indexer))
    			boots := []*flowcontrolv1.FlowSchema{test.bootstrap}
    			strategy := test.strategy()
    			err := EnsureConfigurations(context.Background(), ops, boots, strategy)
    			if err != nil {
    				t.Fatalf("Expected no error, but got: %v", err)
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  2. pkg/registry/flowcontrol/ensurer/strategy.go

    // At the first error, if any, it stops and returns that error.
    func EnsureConfigurations[ObjectType configurationObjectType](ctx context.Context, ops ObjectOps[ObjectType], boots []ObjectType, strategy EnsureStrategy[ObjectType]) error {
    	for _, bo := range boots {
    		err := EnsureConfiguration(ctx, ops, bo, strategy)
    		if err != nil {
    			return err
    		}
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 14K bytes
    - Viewed (0)
  3. pkg/registry/flowcontrol/ensurer/prioritylevelconfiguration_test.go

    			}
    
    			ops := NewPriorityLevelConfigurationOps(client, flowcontrollisters.NewPriorityLevelConfigurationLister(indexer))
    			boots := []*flowcontrolv1.PriorityLevelConfiguration{test.bootstrap}
    			strategy := test.strategy()
    
    			err := EnsureConfigurations(context.Background(), ops, boots, strategy)
    			if err != nil {
    				t.Fatalf("Expected no error, but got: %v", err)
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 14:34:53 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  4. cmd/erasure-healing-common.go

    )
    
    // Boot modTimes up to disk count, setting the value to time sentinel.
    func bootModtimes(diskCount int) []time.Time {
    	modTimes := make([]time.Time, diskCount)
    	// Boots up all the modtimes.
    	for i := range modTimes {
    		modTimes[i] = timeSentinel
    	}
    	return modTimes
    }
    
    func listObjectETags(partsMetadata []FileInfo, errs []error, quorum int) (etags []string) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  5. cluster/gce/gci/configure.sh

    function log-init {
      # Used by log-* functions.
      LOG_CLUSTER_ID=$(get-metadata-value 'instance/attributes/cluster-uid' 'get-metadata-value-error')
      LOG_INSTANCE_NAME=$(hostname)
      LOG_BOOT_ID=$(journalctl --list-boots | grep -E '^ *0' | awk '{print $2}')
      declare -Ag LOG_START_TIMES
      declare -ag LOG_TRAP_STACK
    
      LOG_STATUS_STARTED='STARTED'
      LOG_STATUS_COMPLETED='COMPLETED'
      LOG_STATUS_ERROR='ERROR'
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 04:14:02 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  6. src/encoding/xml/xml_test.go

    	{"\x12<doc/>", "illegal character code U+0012"},
    	{"<?xml version=\"1.0\"?>\x0b<doc/>", "illegal character code U+000B"},
    	{"\xef\xbf\xbe<doc/>", "illegal character code U+FFFE"},
    	{"<?xml version=\"1.0\"?><doc>\r\n<hiya/>\x07<toots/></doc>", "illegal character code U+0007"},
    	{"<?xml version=\"1.0\"?><doc \x12='value'>what's up</doc>", "expected attribute name in element"},
    	{"<doc>&abc\x01;</doc>", "invalid character entity &abc (no semicolon)"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 36.9K bytes
    - Viewed (0)
Back to top