Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 344 for differs (0.11 sec)

  1. pkg/kubelet/cm/memorymanager/state/state_checkpoint.go

    		if err == errors.ErrCheckpointNotFound {
    			return sc.storeState()
    		}
    		return err
    	}
    
    	if sc.policyName != checkpoint.PolicyName {
    		return fmt.Errorf("[memorymanager] configured policy %q differs from state checkpoint policy %q", sc.policyName, checkpoint.PolicyName)
    	}
    
    	sc.cache.SetMachineState(checkpoint.MachineState)
    	sc.cache.SetMemoryAssignments(checkpoint.Entries)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 16:05:48 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  2. pilot/pkg/model/controller.go

    	// AppendServiceHandler notifies about changes to the service catalog.
    	AppendServiceHandler(f ServiceHandler)
    
    	// AppendWorkloadHandler notifies about changes to workloads. This differs from InstanceHandler,
    	// which deals with service instances (the result of a merge of Service and Workload)
    	AppendWorkloadHandler(f func(*WorkloadInstance, Event))
    
    	// Run until a signal is received
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 25 06:54:32 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  3. src/internal/bytealg/compare_amd64.s

    	ADDQ	$48, DI
    	JMP	diff16
    diff48:
    	ADDQ	$32, SI
    	ADDQ	$32, DI
    	JMP	diff16
    diff32:
    	ADDQ	$16, SI
    	ADDQ	$16, DI
    	// AX = bit mask of differences
    diff16:
    	BSFQ	AX, BX	// index of first byte that differs
    	XORQ	AX, AX
    	MOVB	(SI)(BX*1), CX
    	CMPB	CX, (DI)(BX*1)
    	SETHI	AX
    	LEAQ	-1(AX*2), AX	// convert 1/0 to +1/-1
    	RET
    
    	// 0 through 16 bytes left, alen>=8, blen>=8
    _0through16:
    	CMPQ	R8, $8
    	JBE	_0through8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 18 17:17:01 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modfetch/codehost/svn.go

    		}
    
    		n, err := io.Copy(zf, f)
    		f.Close()
    		if err != nil {
    			return err
    		}
    		if n != e.Size {
    			return vcsErrorf("file size differs between 'svn list' and 'svn export': file %s listed as %v bytes, but exported as %v bytes", e.Name, e.Size, n)
    		}
    	}
    
    	return zw.Close()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 02:47:12 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  5. doc/next/3-tools.md

    or copying the `go` binary.
    
    <!-- go.dev/issue/34208, CL 563137, CL 586095 -->
    The new `go` `env` `-changed` flag causes the command to print only
    those settings whose effective value differs from the default value
    that would be obtained in an empty environment with no prior uses of the `-w` flag.
    
    <!-- go.dev/issue/27005, CL 585401 -->
    The new `go` `mod` `tidy` `-diff` flag causes the command not to modify
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 19:06:07 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. pkg/test/echo/response.go

    const (
    	RequestHeader  HeaderType = "request"
    	ResponseHeader HeaderType = "response"
    )
    
    // Response represents a response to a single echo request.
    type Response struct {
    	// RequestURL is the requested URL. This differs from URL, which is the just the path.
    	// For example, RequestURL=http://foo/bar, URL=/bar
    	RequestURL string
    	// Method used (for HTTP).
    	Method string
    	// Protocol used for the request.
    	Protocol string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 01 01:05:45 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  7. src/cmd/internal/objfile/objfile.go

    func (e *Entry) Text() (uint64, []byte, error) {
    	return e.raw.text()
    }
    
    func (e *Entry) GOARCH() string {
    	return e.raw.goarch()
    }
    
    // LoadAddress returns the expected load address of the file.
    // This differs from the actual load address for a position-independent
    // executable.
    func (e *Entry) LoadAddress() (uint64, error) {
    	return e.raw.loadAddress()
    }
    
    // DWARF returns DWARF debug data for the file, if any.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 24 16:01:55 UTC 2021
    - 4.2K bytes
    - Viewed (0)
  8. src/internal/goexperiment/flags.go

    // In the toolchain, the set of experiments enabled for the current
    // build should be accessed via objabi.Experiment.
    //
    // The set of experiments is included in the output of runtime.Version()
    // and "go version <binary>" if it differs from the default experiments.
    //
    // For the set of experiments supported by the current toolchain, see
    // "go doc goexperiment.Flags".
    //
    // Note that this package defines the set of experiments (in Flags)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 16:19:47 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/provider/HasConfigurableValue.java

         *
         * @since 6.1
         */
        void finalizeValueOnRead();
    
        /**
         * Disallows further direct changes to this object.
         *
         * <p>This differs from {@link #finalizeValue()} in that it does not calculate the final value of this object, and so any source for the value will continue to be used until
         * the value is finalized.</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 05 16:10:02 UTC 2021
    - 4.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storageversion/updater.go

    // conditions must be non-nil.
    //  1. if the condition of the specified type already exists: all fields of the existing condition are updated to
    //     newCondition, LastTransitionTime is set to now if the new status differs from the old status
    //  2. if a condition of the specified type does not exist: LastTransitionTime is set to now() if unset,
    //     and newCondition is appended
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 22:40:54 UTC 2023
    - 6.9K bytes
    - Viewed (0)
Back to top