Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 1,221 for lasta (0.06 sec)

  1. src/internal/bytealg/equal_arm64.s

    	MOVD	(R0), R4
    	MOVD	(R1), R5
    	EOR	R4, R5
    	CBNZ	R5, not_equal
    	SUB	$8, R2, R6	// offset of the last 8 bytes
    	MOVD	(R0)(R6), R4
    	MOVD	(R1)(R6), R5
    	EOR	R4, R5
    	CBNZ	R5, not_equal
    	B	equal
    lt_8:
    	TBZ	$2, R2, lt_4
    	MOVWU	(R0), R4
    	MOVWU	(R1), R5
    	EOR	R4, R5
    	CBNZ	R5, not_equal
    	SUB	$4, R2, R6	// offset of the last 4 bytes
    	MOVWU	(R0)(R6), R4
    	MOVWU	(R1)(R6), R5
    	EOR	R4, R5
    	CBNZ	R5, not_equal
    	B	equal
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 16:07:25 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. src/internal/trace/batchcursor_test.go

    	}
    
    	// Update the last element to be larger. There should be no change.
    	heap[len(heap)-1].ev.time = 21
    	heapUpdate(heap, len(heap)-1)
    	checkHeap(t, heap)
    	if heap[len(heap)-1].ev.time != 21 {
    		t.Fatalf("heap update failed, expected %d as heap min: %s", 21, heapDebugString(heap))
    	}
    
    	// Update the last element to be smaller.
    	heap[len(heap)-1].ev.time = 7
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/antMigration/importBuild/groovy/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/net/http/cookie.go

    		case c == '-':
    			// Byte before dash cannot be dot.
    			if last == '.' {
    				return false
    			}
    			partlen++
    		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
    	}
    
    	return ok
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:33:05 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  5. tests/integration/security/cacert_rotation/main_test.go

    		if err != nil {
    			t.Logf("failed to get workload cert last update time: %v", err)
    			return false
    		}
    
    		// retry when workload cert is not updated
    		if updateTime.After(lastUpdateTime) {
    			lastUpdateTime = updateTime
    			t.Logf("workload cert is updated, last update time: %v", updateTime)
    			return true
    		}
    
    		return false
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/events/v1/types.go

    type EventSeries struct {
    	// count is the number of occurrences in this series up to the last heartbeat time.
    	Count int32 `json:"count" protobuf:"varint,1,opt,name=count"`
    	// lastObservedTime is the time when last Event from the series was seen before last heartbeat.
    	LastObservedTime metav1.MicroTime `json:"lastObservedTime" protobuf:"bytes,2,opt,name=lastObservedTime"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. src/cmd/cover/cover.go

    	for {
    		// Find first statement that affects flow of control (break, continue, if, etc.).
    		// It will be the last statement of this basic block.
    		var last int
    		end := blockEnd
    		for last = 0; last < len(list); last++ {
    			stmt := list[last]
    			end = f.statementBoundary(stmt)
    			if f.endsBasicSourceBlock(stmt) {
    				// If it is a labeled statement, we need to place a counter between
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  8. src/runtime/mkduff.go

    		fmt.Fprintln(w)
    	}
    	fmt.Fprintln(w, "\tRET")
    }
    
    func zeroARM64(w io.Writer) {
    	// ZR: always zero
    	// R20: ptr to memory to be zeroed
    	// On return, R20 points to the last zeroed dword.
    	fmt.Fprintln(w, "TEXT runtime·duffzero<ABIInternal>(SB), NOSPLIT|NOFRAME, $0-0")
    	for i := 0; i < 63; i++ {
    		fmt.Fprintln(w, "\tSTP.P\t(ZR, ZR), 16(R20)")
    	}
    	fmt.Fprintln(w, "\tSTP\t(ZR, ZR), (R20)")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:04:21 UTC 2023
    - 8K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/events/v1/generated.proto

    message EventSeries {
      // count is the number of occurrences in this series up to the last heartbeat time.
      optional int32 count = 1;
    
      // lastObservedTime is the time when last Event from the series was seen before last heartbeat.
      optional k8s.io.apimachinery.pkg.apis.meta.v1.MicroTime lastObservedTime = 2;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/events/v1/generated.proto

    message EventSeries {
      // count is the number of occurrences in this series up to the last heartbeat time.
      optional int32 count = 1;
    
      // lastObservedTime is the time when last Event from the series was seen before last heartbeat.
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.MicroTime lastObservedTime = 2;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top