Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 574 for boots (0.38 sec)

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

    				indexer.Add(test.current)
    			}
    			bootFS := newFlowSchema(test.bootstrapName, "pl", 100).Object()
    			ops := NewFlowSchemaOps(client, flowcontrollisters.NewFlowSchemaLister(indexer))
    			boots := []*flowcontrolv1.FlowSchema{bootFS}
    			err := RemoveUnwantedObjects(context.Background(), ops, boots)
    
    			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/prioritylevelconfiguration_test.go

    				indexer.Add(test.current)
    			}
    
    			boot := newPLConfiguration(test.bootstrapName).Object()
    			boots := []*flowcontrolv1.PriorityLevelConfiguration{boot}
    			ops := NewPriorityLevelConfigurationOps(client, flowcontrollisters.NewPriorityLevelConfigurationLister(indexer))
    			err := RemoveUnwantedObjects(context.Background(), ops, boots)
    			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)
  3. 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)
  4. cmd/erasure-healing-common.go

    	timeSentinel1970 = time.Unix(0, 1).UTC() // 1970 used for special cases when xlmeta.version == 0
    )
    
    // 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
    }
    
    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/windows/testonly/install-ssh.psm1

    $OPENSSH_ROOT = 'C:\Program Files\OpenSSH'
    $USER_PROFILE_MODULE = 'C:\user-profile.psm1'
    $WRITE_SSH_KEYS_SCRIPT = 'C:\write-ssh-keys.ps1'
    
    # Starts the Win64-OpenSSH services and configures them to automatically start
    # on subsequent boots.
    function Start_OpenSshServices {
      ForEach ($service in ("sshd", "ssh-agent")) {
        net start ${service}
        Set-Service ${service} -StartupType Automatic
      }
    }
    
    # Installs open-ssh using the instructions in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 09 05:09:18 UTC 2021
    - 11.6K bytes
    - Viewed (0)
  6. 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)
  7. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    Gryphon.  `Do you know why it's called a whiting?'
    
      `I never thought about it,' said Alice.  `Why?'
    
      `IT DOES THE BOOTS AND SHOES.' the Gryphon replied very
    solemnly.
    
      Alice was thoroughly puzzled.  `Does the boots and shoes!' she
    repeated in a wondering tone.
    
      `Why, what are YOUR shoes done with?' said the Gryphon.  `I
    mean, what makes them so shiny?'
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    Gryphon.  `Do you know why it's called a whiting?'
    
      `I never thought about it,' said Alice.  `Why?'
    
      `IT DOES THE BOOTS AND SHOES.' the Gryphon replied very
    solemnly.
    
      Alice was thoroughly puzzled.  `Does the boots and shoes!' she
    repeated in a wondering tone.
    
      `Why, what are YOUR shoes done with?' said the Gryphon.  `I
    mean, what makes them so shiny?'
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 29 21:35:03 UTC 2012
    - 145.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/bools/bools.go

    // Copyright 2014 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package bools defines an Analyzer that detects common mistakes
    // involving boolean operators.
    package bools
    
    import (
    	"go/ast"
    	"go/token"
    	"go/types"
    
    	"golang.org/x/tools/go/analysis"
    	"golang.org/x/tools/go/analysis/passes/inspect"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/groovy/build-logic/spring-boot-application/src/main/groovy/com.example.spring-boot-application.gradle

    plugins {
        id('com.example.commons')
        id('org.springframework.boot')
    }
    
    dependencies {
        implementation('org.springframework.boot:spring-boot-starter-web')
        implementation('org.springframework.boot:spring-boot-starter-thymeleaf')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 243 bytes
    - Viewed (0)
Back to top