Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 679 for lasta (0.07 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentReplacementIntegrationTest.groovy

            expect:
            resolvedModules 'b'
        }
    
        def "uses highest when it is last"() {
            declaredDependencies 'b', 'a', 'b:2'
            declaredReplacements 'a->b'
            expect:
            resolvedModules 'b:2'
        }
    
        def "uses highest when it is last following replacedBy"() {
            declaredDependencies 'a', 'b', 'b:2'
            declaredReplacements 'a->b'
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/report/source.go

    			fn.cum += inst.cum
    		}
    
    		// See if we should merge into preceding function.
    		if len(funcs) > 0 {
    			last := funcs[len(funcs)-1]
    			if l-last.end < mergeLimit && last.name == name {
    				last.end = l + 1
    				last.flat += fn.flat
    				last.cum += fn.cum
    				funcs[len(funcs)-1] = last
    				continue
    			}
    		}
    
    		// Add new function.
    		funcs = append(funcs, fn)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/flowcontrol/v1beta2/generated.proto

      // `lastTransitionTime` is the last time the condition transitioned from one status to another.
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 3;
    
      // `reason` is a unique, one-word, CamelCase reason for the condition's last transition.
      optional string reason = 4;
    
      // `message` is a human-readable message indicating details about last transition.
      optional string message = 5;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/flowcontrol/v1beta2/types_swagger_doc_generated.go

    	"lastTransitionTime": "`lastTransitionTime` is the last time the condition transitioned from one status to another.",
    	"reason":             "`reason` is a unique, one-word, CamelCase reason for the condition's last transition.",
    	"message":            "`message` is a human-readable message indicating details about last transition.",
    }
    
    func (FlowSchemaCondition) SwaggerDoc() map[string]string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:27:57 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/flowcontrol/v1/generated.proto

      // `lastTransitionTime` is the last time the condition transitioned from one status to another.
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 3;
    
      // `reason` is a unique, one-word, CamelCase reason for the condition's last transition.
      optional string reason = 4;
    
      // `message` is a human-readable message indicating details about last transition.
      optional string message = 5;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/flowcontrol/v1beta1/generated.proto

      // `lastTransitionTime` is the last time the condition transitioned from one status to another.
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 3;
    
      // `reason` is a unique, one-word, CamelCase reason for the condition's last transition.
      optional string reason = 4;
    
      // `message` is a human-readable message indicating details about last transition.
      optional string message = 5;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  7. pkg/slices/slices_test.go

    	// ExampleSort shows the best practices in sorting by multiple keys.
    	// If you just have one key, use SortBy
    
    	// Test has 3 values; we will sort by them in Rank < First < Last order
    	type Test struct {
    		Rank  int
    		First string
    		Last  string
    	}
    	l := []Test{
    		{0, "b", "b"},
    		{0, "b", "a"},
    		{1, "a", "a"},
    		{0, "c", "a"},
    		{1, "c", "a"},
    		{0, "a", "a"},
    		{2, "z", "a"},
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  8. pilot/pkg/xds/discovery.go

    				if req.ConfigsUpdated == nil {
    					log.Infof("Push debounce stable[%d] %d for reason %s: %v since last change, %v since last push, full=%v",
    						pushCounter, debouncedEvents, reasonsUpdated(req),
    						quietTime, eventDelay, req.Full)
    				} else {
    					log.Infof("Push debounce stable[%d] %d for config %s: %v since last change, %v since last push, full=%v",
    						pushCounter, debouncedEvents, configsUpdated(req),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 20:21:09 UTC 2024
    - 19K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/apps/v1/generated.proto

      optional string status = 2;
    
      // The last time this condition was updated.
      optional k8s.io.apimachinery.pkg.apis.meta.v1.Time lastUpdateTime = 6;
    
      // Last time the condition transitioned from one status to another.
      optional k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 7;
    
      // The reason for the condition's last transition.
      optional string reason = 4;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/apps/v1/generated.proto

      optional string status = 2;
    
      // The last time this condition was updated.
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastUpdateTime = 6;
    
      // Last time the condition transitioned from one status to another.
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 7;
    
      // The reason for the condition's last transition.
      optional string reason = 4;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 34.8K bytes
    - Viewed (0)
Back to top