Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,995 for LAST (0.1 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/http2/PushObserver.kt

       * The response headers corresponding to a pushed request.  When [last] is true, there are
       * no data frames to follow.
       *
       * @param streamId server-initiated stream ID: an even number.
       * @param responseHeaders minimally includes `:status`.
       * @param last when true, there is no response data.
       */
      fun onHeaders(
        streamId: Int,
        responseHeaders: List<Header>,
        last: Boolean,
      ): Boolean
    
      /**
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/client-go/applyconfigurations/core/v1/ephemeralcontainercommon.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 *EphemeralContainerCommonApplyConfiguration) WithName(value string) *EphemeralContainerCommonApplyConfiguration {
    	b.Name = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 21:39:35 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/client-go/applyconfigurations/core/v1/persistentvolumeclaimspec.go

    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Selector field is set to the value of the last call.
    func (b *PersistentVolumeClaimSpecApplyConfiguration) WithSelector(value *metav1.LabelSelectorApplyConfiguration) *PersistentVolumeClaimSpecApplyConfiguration {
    	b.Selector = value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1/validatingadmissionpolicybinding.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 *ValidatingAdmissionPolicyBindingApplyConfiguration) WithKind(value string) *ValidatingAdmissionPolicyBindingApplyConfiguration {
    	b.Kind = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/client/applyconfiguration/apiextensions/v1/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 v1.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)
  6. pkg/kube/krt/join_test.go

    	last := atomic.NewString("")
    	j.Register(func(o krt.Event[Named]) {
    		last.Store(o.Latest().ResourceName())
    	})
    	assert.EventuallyEqual(t, last.Load, "")
    	c1.Set(&Named{"c1", "a"})
    	assert.EventuallyEqual(t, last.Load, "c1/a")
    
    	c2.Set(&Named{"c2", "a"})
    	assert.EventuallyEqual(t, last.Load, "c2/a")
    
    	c3.Set(&Named{"c3", "a"})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 09 19:55:53 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. src/internal/bytealg/bytealg.go

    }
    
    // LastIndexRabinKarp uses the Rabin-Karp search algorithm to return the last index of the
    // occurrence of sep in s, or -1 if not present.
    func LastIndexRabinKarp[T string | []byte](s, sep T) int {
    	// Rabin-Karp search from the end of the string
    	hashss, pow := HashStrRev(sep)
    	n := len(sep)
    	last := len(s) - n
    	var h uint32
    	for i := len(s) - 1; i >= last; i-- {
    		h = h*PrimeRK + uint32(s[i])
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 19 19:51:15 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. src/runtime/debug/mod.go

    			elem := strings.Split(line[len(modLine):], tab)
    			last = &bi.Main
    			*last, err = readModuleLine(elem)
    			if err != nil {
    				return nil, err
    			}
    		case strings.HasPrefix(line, depLine):
    			elem := strings.Split(line[len(depLine):], tab)
    			last = new(Module)
    			bi.Deps = append(bi.Deps, last)
    			*last, err = readModuleLine(elem)
    			if err != nil {
    				return nil, err
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 15:06:51 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/client-go/applyconfigurations/core/v1/container.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 *ContainerApplyConfiguration) WithName(value string) *ContainerApplyConfiguration {
    	b.Name = &value
    	return b
    }
    
    // WithImage sets the Image field in the declarative configuration to the given value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 21:39:35 UTC 2023
    - 14.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/client/applyconfiguration/apiextensions/v1beta1/customresourcedefinition.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 *CustomResourceDefinitionApplyConfiguration) WithKind(value string) *CustomResourceDefinitionApplyConfiguration {
    	b.Kind = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 28 12:38:10 UTC 2023
    - 10.7K bytes
    - Viewed (0)
Back to top