Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,583 for lasta (0.04 sec)

  1. src/net/dnsclient.go

    			// Byte before dash cannot be dot.
    			if last == '.' {
    				return false
    			}
    			partlen++
    			nonNumeric = true
    		case c == '.':
    			// Byte before dot cannot be dot, dash.
    			if last == '.' || last == '-' {
    				return false
    			}
    			if partlen > 63 || partlen == 0 {
    				return false
    			}
    			partlen = 0
    		}
    		last = c
    	}
    	if last == '-' || partlen > 63 {
    		return false
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/client-go/applyconfigurations/autoscaling/v2/horizontalpodautoscalercondition.go

    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Type field is set to the value of the last call.
    func (b *HorizontalPodAutoscalerConditionApplyConfiguration) WithType(value v2.HorizontalPodAutoscalerConditionType) *HorizontalPodAutoscalerConditionApplyConfiguration {
    	b.Type = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 09 02:34:54 UTC 2021
    - 4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/client-go/applyconfigurations/core/v1/podtemplate.go

    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Kind field is set to the value of the last call.
    func (b *PodTemplateApplyConfiguration) WithKind(value string) *PodTemplateApplyConfiguration {
    	b.Kind = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 23 17:59:55 UTC 2022
    - 11.7K bytes
    - Viewed (0)
  4. analysis/analysis-api-impl-base/src/org/jetbrains/kotlin/analysis/api/impl/base/lifetime/KaBaseLifetimeTracker.kt

            lifetimeOwnersStack.set(lifetimeOwnersStack.get().add(session.token))
        }
    
        fun afterLeavingAnalysis(session: KtAnalysisSession) {
            val stack = lifetimeOwnersStack.get()
            val last = stack.last()
            check(last == session.token)
            lifetimeOwnersStack.set(stack.removeAt(stack.lastIndex))
        }
    
        companion object {
            fun getInstance(project: Project): KaBaseLifetimeTracker =
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/lastappliedmanager_test.go

      labels:
        app: my-app # missing from last-applied
    spec:
      replicas: 100 # does not match last-applied
      selector:
        matchLabels:
          app: my-app
      template:
        metadata:
          labels:
            app: my-app
        spec:
          containers:
          - name: my-c
            image: my-image-v2 # does no match last-applied
          # note that second container in last-applied is missing
    `),
    			applied: []byte(`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 20K bytes
    - Viewed (0)
  6. staging/src/k8s.io/client-go/applyconfigurations/coordination/v1/lease.go

    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Kind field is set to the value of the last call.
    func (b *LeaseApplyConfiguration) WithKind(value string) *LeaseApplyConfiguration {
    	b.Kind = &value
    	return b
    }
    
    // WithAPIVersion sets the APIVersion field in the declarative configuration to the given value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 23 17:59:55 UTC 2022
    - 11.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/client/applyconfiguration/apiextensions/v1beta1/customresourcedefinitioncondition.go

    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Type field is set to the value of the last call.
    func (b *CustomResourceDefinitionConditionApplyConfiguration) WithType(value v1beta1.CustomResourceDefinitionConditionType) *CustomResourceDefinitionConditionApplyConfiguration {
    	b.Type = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 28 12:38:10 UTC 2023
    - 4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/client-go/applyconfigurations/core/v1/clustertrustbundleprojection.go

    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Name field is set to the value of the last call.
    func (b *ClusterTrustBundleProjectionApplyConfiguration) WithName(value string) *ClusterTrustBundleProjectionApplyConfiguration {
    	b.Name = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/client/applyconfiguration/apiextensions/v1beta1/customresourcedefinitionspec.go

    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Group field is set to the value of the last call.
    func (b *CustomResourceDefinitionSpecApplyConfiguration) WithGroup(value string) *CustomResourceDefinitionSpecApplyConfiguration {
    	b.Group = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  10. src/internal/godebugs/godebugs_test.go

    			t.Skip(err)
    		}
    		t.Fatal(err)
    	}
    	doc := string(data)
    
    	incs := incNonDefaults(t)
    
    	last := ""
    	for _, info := range godebugs.All {
    		if info.Name <= last {
    			t.Errorf("All not sorted: %s then %s", last, info.Name)
    		}
    		last = info.Name
    
    		if info.Package == "" {
    			t.Errorf("Name=%s missing Package", info.Name)
    		}
    		if info.Changed != 0 && info.Old == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 14:19:39 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top