Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 70 for ungetc (0.29 sec)

  1. src/cmd/internal/obj/mips/asm0.go

    			if a.Reg == REGSP {
    				// unset base register for better printing, since
    				// a.Offset is still relative to pseudo-SP.
    				a.Reg = obj.REG_NONE
    			}
    			c.instoffset = int64(c.autosize) + a.Offset
    			if c.instoffset >= -BIG && c.instoffset < BIG {
    				return C_SAUTO
    			}
    			return C_LAUTO
    
    		case obj.NAME_PARAM:
    			if a.Reg == REGSP {
    				// unset base register for better printing, since
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 53.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/registry/rest/resttest/resttest.go

    	if err != nil {
    		t.Errorf("unexpected error: %v", err)
    	}
    	defer t.delete(ctx, created)
    
    	// Set resource version which might be unset in created object.
    	createdMeta := t.getObjectMetaOrFail(created)
    	createdFakeMeta := t.getObjectMetaOrFail(createdFake)
    	createdMeta.SetCreationTimestamp(createdFakeMeta.GetCreationTimestamp())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/MapMakerInternalMap.java

         */
        @CheckForNull
        V get();
    
        /** Returns the entry which contains this {@link WeakValueReference}. */
        E getEntry();
    
        /** Unsets the referenced value. Subsequent calls to {@link #get} will return {@code null}. */
        void clear();
    
        /**
         * Returns a freshly created {@link WeakValueReference} for the given {@code entry} (and on the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/loong64/asm.go

    			if a.Reg == REGSP {
    				// unset base register for better printing, since
    				// a.Offset is still relative to pseudo-SP.
    				a.Reg = obj.REG_NONE
    			}
    			c.instoffset = int64(c.autosize) + a.Offset
    			if c.instoffset >= -BIG && c.instoffset < BIG {
    				return C_SAUTO
    			}
    			return C_LAUTO
    
    		case obj.NAME_PARAM:
    			if a.Reg == REGSP {
    				// unset base register for better printing, since
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  5. src/html/template/exec_test.go

    	{"if emptymap", "{{if .MSIEmpty}}NON-EMPTY{{else}}EMPTY{{end}}", "EMPTY", tVal, true},
    	{"if map", "{{if .MSI}}NON-EMPTY{{else}}EMPTY{{end}}", "NON-EMPTY", tVal, true},
    	{"if map unset", "{{if .MXI.none}}NON-ZERO{{else}}ZERO{{end}}", "ZERO", tVal, true},
    	{"if map not unset", "{{if not .MXI.none}}ZERO{{else}}NON-ZERO{{end}}", "ZERO", tVal, true},
    	{"if $x with $y int", "{{if $x := true}}{{with $y := .I}}{{$x}},{{$y}}{{end}}{{end}}", "true,17", tVal, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  6. operator/pkg/apis/istio/v1alpha1/values_types.proto

      string hub = 2;
    
      // The container image tag to pull. Image will be `Hub/Image:Tag-Variant`.
      google.protobuf.Value tag = 3;
    
      // The container image variant to pull. Options are "debug" or "distroless". Unset will use the default for the given version.
      string variant = 29;
    
      // Image name to pull from. Image will be `Hub/Image:Tag-Variant`.
      // If Image contains a "/", it will replace the entire `image` in the pod.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  7. src/runtime/mgcscavenge.go

    // wake immediately unparks the scavenger if necessary.
    //
    // Safe to run without a P.
    func (s *scavengerState) wake() {
    	lock(&s.lock)
    	if s.parked {
    		// Unset sysmonWake, since the scavenger is now being awoken.
    		s.sysmonWake.Store(0)
    
    		// s.parked is unset to prevent a double wake-up.
    		s.parked = false
    
    		// Ready the goroutine by injecting it. We use injectglist instead
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

         */
        @CheckForNull
        V get();
    
        /** Returns the entry which contains this {@link WeakValueReference}. */
        E getEntry();
    
        /** Unsets the referenced value. Subsequent calls to {@link #get} will return {@code null}. */
        void clear();
    
        /**
         * Returns a freshly created {@link WeakValueReference} for the given {@code entry} (and on the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  9. src/text/template/exec_test.go

    	{"if emptymap", "{{if .MSIEmpty}}NON-EMPTY{{else}}EMPTY{{end}}", "EMPTY", tVal, true},
    	{"if map", "{{if .MSI}}NON-EMPTY{{else}}EMPTY{{end}}", "NON-EMPTY", tVal, true},
    	{"if map unset", "{{if .MXI.none}}NON-ZERO{{else}}ZERO{{end}}", "ZERO", tVal, true},
    	{"if map not unset", "{{if not .MXI.none}}ZERO{{else}}NON-ZERO{{end}}", "ZERO", tVal, true},
    	{"if $x with $y int", "{{if $x := true}}{{with $y := .I}}{{$x}},{{$y}}{{end}}{{end}}", "true,17", tVal, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  10. pilot/pkg/model/push_context_test.go

    	g := NewWithT(t)
    	env := NewEnvironment()
    	env.ConfigStore = NewFakeStore()
    	env.ServiceDiscovery = &localServiceDiscovery{
    		services: []*Service{
    			{
    				Hostname: "svc-unset",
    				Ports:    allPorts,
    				Attributes: ServiceAttributes{
    					Namespace: "test1",
    				},
    			},
    			{
    				Hostname: "svc-public",
    				Ports:    allPorts,
    				Attributes: ServiceAttributes{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
Back to top