Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 1,221 for lasta (0.05 sec)

  1. cmd/httprange.go

    		} else if offsetEnd, err = strconv.ParseInt(offsetEndString, 10, 64); err != nil {
    			return nil, fmt.Errorf("'%s' does not have a valid last byte position value", rangeString)
    		} else if offsetEnd < 0 {
    			return nil, fmt.Errorf("Last byte position is negative ('%d')", offsetEnd)
    		}
    	}
    
    	switch {
    	case offsetBegin > -1 && offsetEnd > -1:
    		if offsetBegin > offsetEnd {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 08:44:07 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/arm64/obj7.go

    	end := c.ctxt.EndUnsafePoint(bls, c.newprog, -1)
    
    	var last *obj.Prog
    	for last = c.cursym.Func().Text; last.Link != nil; last = last.Link {
    	}
    
    	// Now we are at the end of the function, but logically
    	// we are still in function prologue. We need to fix the
    	// SP data and PCDATA.
    	spfix := obj.Appendp(last, c.newprog)
    	spfix.As = obj.ANOP
    	spfix.Spadj = -framesize
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 05:46:32 UTC 2023
    - 28.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/antMigration/importBuild/kotlin/build.xml

            <mkdir dir="${classes.dir}"/>
            <javac srcdir="${src.dir}" destdir="${classes.dir}" debug="true"/>
            <propertyfile file="${build.dir}/build-info.properties">
                <entry key="last.compile" value="${now}"/>
            </propertyfile>
        </target>
    
        <target name="package" depends="build">
            <jar destfile="${build.dir}/lib/hello-app.jar" basedir="${classes.dir}"/>
        </target>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 958 bytes
    - Viewed (0)
  4. src/slices/iter.go

    	s := Collect(seq)
    	SortStableFunc(s, cmp)
    	return s
    }
    
    // Chunk returns an iterator over consecutive sub-slices of up to n elements of s.
    // All but the last sub-slice will have size n.
    // All sub-slices are clipped to have no capacity beyond the length.
    // If s is empty, the sequence is empty: there is no empty slice in the sequence.
    // Chunk panics if n is less than 1.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:40:32 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. pkg/apis/apiserverinternal/types.go

    	// If set, this represents the .metadata.generation that the condition was set based upon.
    	// +optional
    	ObservedGeneration int64
    	// Last time the condition transitioned from one status to another.
    	LastTransitionTime metav1.Time
    	// The reason for the condition's last transition.
    	// +required
    	Reason string
    	// A human readable message indicating details about the transition.
    	// +required
    	Message string
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:37 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. src/net/lookup_windows_test.go

    	// mail.golang.com canonical name = golang.org.
    	rx := regexp.MustCompile(`(?m)^([a-z0-9.\-]+)\s+canonical name\s*=\s*([a-z0-9.\-]+)$`)
    	// assumes the last CNAME is the correct one
    	last := name
    	for _, ans := range rx.FindAllStringSubmatch(r, -1) {
    		last = ans[2]
    	}
    	return absDomainName(last), nil
    }
    
    func nslookupTXT(name string) (txt []string, err error) {
    	var r string
    	if r, err = nslookup("txt", name); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/apis/example/v1/types.go

    	Status ConditionStatus `json:"status" protobuf:"bytes,2,opt,name=status,casttype=ConditionStatus"`
    	// Last time we probed the condition.
    	// +optional
    	LastProbeTime metav1.Time `json:"lastProbeTime,omitempty" protobuf:"bytes,3,opt,name=lastProbeTime"`
    	// Last time the condition transitioned from one status to another.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  8. src/runtime/mgclimit.go

    	// assistTimePool is the accumulated assist time since the last update.
    	assistTimePool atomic.Int64
    
    	// idleMarkTimePool is the accumulated idle mark time since the last update.
    	idleMarkTimePool atomic.Int64
    
    	// idleTimePool is the accumulated time Ps spent on the idle list since the last update.
    	idleTimePool atomic.Int64
    
    	// lastUpdate is the nanotime timestamp of the last time update was called.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 22:07:41 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  9. src/runtime/os2_aix.go

    //go:nosplit
    func syscall0(fn *libFunc) (r, err uintptr) {
    	gp := getg()
    	mp := gp.m
    	resetLibcall := true
    	if mp.libcallsp == 0 {
    		mp.libcallg.set(gp)
    		mp.libcallpc = getcallerpc()
    		// sp must be the last, because once async cpu profiler finds
    		// all three values to be non-zero, it will use them
    		mp.libcallsp = getcallersp()
    	} else {
    		resetLibcall = false // See comment in sys_darwin.go:libcCall
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/autoscaling/v2beta2/generated.proto

      optional string status = 2;
    
      // lastTransitionTime is the last time the condition transitioned from
      // one status to another
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 3;
    
      // reason is the reason for the condition's last transition.
      // +optional
      optional string reason = 4;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21K bytes
    - Viewed (0)
Back to top