Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for Searle (0.07 sec)

  1. releasenotes/notes/51377.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    
    issue:
      - 51377
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 201 bytes
    - Viewed (0)
  2. common/config/.golangci.yml

            # - name: empty-lines
            # - name: confusing-results
            # - name: empty-block
            # - name: get-return
            # - name: confusing-naming
            # - name: unexported-naming
            # - name: early-return
            # - name: unused-parameter
            # - name: unnecessary-stmt
            # - name: deep-exit
            # - name: import-shadowing
            # - name: modifies-value-receiver
            # - name: unused-receiver
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 20:03:06 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  3. src/math/big/arith_s390x.s

    	RET
    
    TEXT ·addVW(SB), NOSPLIT, $0
    	MOVD z_len+8(FP), R5 // length of z
    	MOVD x+24(FP), R6
    	MOVD y+48(FP), R7    // c = y
    	MOVD z+0(FP), R8
    
    	CMPBEQ R5, $0, returnC // if len(z) == 0, we can have an early return
    
    	// Add the first two words, and determine which path (copy path or loop path) to take based on the carry flag.
    	ADDC   0(R6), R7
    	MOVD   R7, 0(R8)
    	CMPBEQ R5, $1, returnResult // len(z) == 1
    	MOVD   $0, R9
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_ivy.adoc

    [[sec:modifying_the_generated_module_descriptor]]
    === Customizing the generated module descriptor
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dynamic_versions.adoc

    == Declaring a changing version
    
    A team might decide to implement a series of features before releasing a new version of the application or library. A common strategy to allow consumers to integrate an unfinished version of their artifacts early and often is to release a module with a so-called _changing version_.
    A changing version indicates that the feature set is still under active development and hasn't released a stable version for general availability yet.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  6. src/runtime/race_amd64.s

    	GO_ARGS
    	JMP	sync∕atomic·CompareAndSwapInt64(SB)
    
    // Generic atomic operation implementation.
    // AX already contains target function.
    TEXT	racecallatomic<>(SB), NOSPLIT|NOFRAME, $0-0
    	// Trigger SIGSEGV early.
    	MOVQ	16(SP), R12
    	MOVBLZX	(R12), R13
    	// Check that addr is within [arenastart, arenaend) or within [racedatastart, racedataend).
    	CMPQ	R12, runtime·racearenastart(SB)
    	JB	racecallatomic_data
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  7. releasenotes/notes/external-name.yaml

        content: |
          Below describes *upcoming* changes to `ExternalName`.
          In this release, there is no behavioral changes by default.
          However, you can explicitly opt-in to the new behavior early if desired, and prepare your environments for the upcoming change.
          
          Kubernetes `ExternalName` `Service`s allow users to create new DNS entries. For example, you can create an `example` service
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 27 03:08:29 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/feature_lifecycle.adoc

    Continuous improvement combined with frequent delivery allows new features to be available to users early.
    Early users provide invaluable feedback, which is incorporated into the development process.
    
    Getting new functionality into the hands of users regularly is a core value of the Gradle platform.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  9. src/math/big/arith_arm.s

    	TEQ	$0, R5
    	BEQ	X7
    
    	MOVW	z+0(FP), R1
    	MOVW	x+12(FP), R2
    	ADD	R5<<2, R2, R2
    	ADD	R5<<2, R1, R5
    	MOVW	s+24(FP), R3
    	TEQ	$0, R3	// shift 0 is special
    	BEQ	Y7
    	ADD	$4, R1	// stop one word early
    	MOVW	$32, R4
    	SUB	R3, R4
    	MOVW	$0, R7
    
    	MOVW.W	-4(R2), R6
    	MOVW	R6<<R3, R7
    	MOVW	R6>>R4, R6
    	MOVW	R6, c+28(FP)
    	B E7
    
    L7:
    	MOVW.W	-4(R2), R6
    	ORR	R6>>R4, R7
    	MOVW.W	R7, -4(R5)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/writing_settings_files.adoc

    // limitations under the License.
    
    [[writing_settings_files]]
    = Writing Settings Files
    
    The settings file is the entry point of every Gradle build.
    
    image::author-gradle-7.png[]
    
    Early in the Gradle Build lifecycle, the <<build_lifecycle.adoc#sec:initialization,initialization phase>> finds the settings file in your <<directory_layout#dir:project_root,project root directory>>.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 04:15:25 UTC 2024
    - 9.6K bytes
    - Viewed (0)
Back to top