Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 80 for appengine (0.18 sec)

  1. src/encoding/xml/marshal.go

    					continue
    				}
    			}
    
    			var scratch [64]byte
    			vf = indirect(vf)
    			switch vf.Kind() {
    			case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
    				if err := emit(p, strconv.AppendInt(scratch[:0], vf.Int(), 10)); err != nil {
    					return err
    				}
    			case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  2. pkg/features/kube_features.go

    	PodDeletionCost featuregate.Feature = "PodDeletionCost"
    
    	// owner: @mimowo
    	// kep: https://kep.k8s.io/3329
    	// alpha: v1.25
    	// beta: v1.26
    	//
    	// Enables support for appending a dedicated pod condition indicating that
    	// the pod is being deleted due to a disruption.
    	PodDisruptionConditions featuregate.Feature = "PodDisruptionConditions"
    
    	// owner: @danielvegamyhre
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  3. pkg/controller/deployment/util/deployment_util.go

    			if totalLen <= revHistoryLimitInChars {
    				oldRevisions = append(oldRevisions[start:], oldRevision)
    				newRS.Annotations[RevisionHistoryAnnotation] = strings.Join(oldRevisions, ",")
    			} else {
    				logger.Info("Not appending revision due to revision history length limit reached", "revisionHistoryLimit", revHistoryLimitInChars)
    			}
    		}
    	}
    	// If the new replica set is about to be created, we need to add replica annotations to it.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 07:09:11 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  4. src/encoding/json/encode.go

    	b = mayAppendQuote(b, opts.quoted)
    	e.Write(b)
    }
    
    func intEncoder(e *encodeState, v reflect.Value, opts encOpts) {
    	b := e.AvailableBuffer()
    	b = mayAppendQuote(b, opts.quoted)
    	b = strconv.AppendInt(b, v.Int(), 10)
    	b = mayAppendQuote(b, opts.quoted)
    	e.Write(b)
    }
    
    func uintEncoder(e *encodeState, v reflect.Value, opts encOpts) {
    	b := e.AvailableBuffer()
    	b = mayAppendQuote(b, opts.quoted)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  5. cmd/site-replication-metrics_gen.go

    	o = append(o, 0xa9, 0x45, 0x72, 0x72, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x73)
    	o = msgp.AppendMapHeader(o, uint32(len(z.ErrCounts)))
    	for za0001, za0002 := range z.ErrCounts {
    		o = msgp.AppendString(o, za0001)
    		o = msgp.AppendInt(o, za0002)
    	}
    	return
    }
    
    // UnmarshalMsg implements msgp.Unmarshaler
    func (z *RTimedMetrics) UnmarshalMsg(bts []byte) (o []byte, err error) {
    	var field []byte
    	_ = field
    	var zb0001 uint32
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 06 06:00:45 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  6. src/go/constant/value.go

    	n := len(x)
    	for i := 0; i+i < n; i++ {
    		x[i], x[n-1-i] = x[n-1-i], x[i]
    	}
    	return x
    }
    
    // appendReverse appends to list all of x's subpieces, but in reverse,
    // and returns the result. Appending the reversal allows processing
    // the right side in a recursive call and the left side in a loop.
    // Because a chain like a + b + c + d + e is actually represented
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 34K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/build.go

    		directory, but it is not accessed. When -modfile is specified, an
    		alternate go.sum file is also used: its path is derived from the
    		-modfile flag by trimming the ".mod" extension and appending ".sum".
    	-overlay file
    		read a JSON config file that provides an overlay for build operations.
    		The file is a JSON struct with a single field, named 'Replace', that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 17:22:59 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  8. src/runtime/symtab.go

    // modulesinit creates the active modules slice out of all loaded modules.
    //
    // When a module is first loaded by the dynamic linker, an .init_array
    // function (written by cmd/link) is invoked to call addmoduledata,
    // appending to the module to the linked list that starts with
    // firstmoduledata.
    //
    // There are two times this can happen in the lifecycle of a Go
    // program. First, if compiled with -linkshared, a number of modules
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/x86/obj6.go

    	}
    	return false
    }
    
    func indir_cx(ctxt *obj.Link, a *obj.Addr) {
    	a.Type = obj.TYPE_MEM
    	a.Reg = REG_CX
    }
    
    // loadG ensures the G is loaded into a register (either CX or REGG),
    // appending instructions to p if necessary. It returns the new last
    // instruction and the G register.
    func loadG(ctxt *obj.Link, cursym *obj.LSym, p *obj.Prog, newprog obj.ProgAlloc) (*obj.Prog, int16) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:36:45 UTC 2023
    - 40.9K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/mod/modfile/rule.go

    	}
    	return &Replace{
    		Old:    module.Version{Path: s, Version: v},
    		New:    module.Version{Path: ns, Version: nv},
    		Syntax: line,
    	}, nil
    }
    
    // fixRetract applies fix to each retract directive in f, appending any errors
    // to errs.
    //
    // Most versions are fixed as we parse the file, but for retract directives,
    // the relevant module path is the one specified with the module directive,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:34:56 UTC 2024
    - 46.5K bytes
    - Viewed (0)
Back to top