Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 469 for opldrr (0.1 sec)

  1. src/cmd/compile/internal/ssa/passbm_test.go

    		blocs = append(blocs, Bloc(blockn(i),
    			Valu(valn("v", i, 0), OpConstBool, types.Types[types.TBOOL], 1, nil),
    			Valu(valn("addr", i, 1), OpAddr, ptrType, 0, nil, "sb"),
    			Valu(valn("addr", i, 2), OpAddr, ptrType, 0, nil, "sb"),
    			Valu(valn("addr", i, 3), OpAddr, ptrType, 0, nil, "sb"),
    			Valu(valn("zero", i, 1), OpZero, types.TypeMem, 8, elemType, valn("addr", i, 3),
    				valn("store", i-1, 4)),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/mod/module/pseudo.go

    		return major + ".0.0-" + segment // form (1)
    	}
    	if semver.Prerelease(older) != "" {
    		return older + ".0." + segment + build // form (4), (5)
    	}
    
    	// Form (2), (3).
    	// Extract patch from vMAJOR.MINOR.PATCH
    	i := strings.LastIndex(older, ".") + 1
    	v, patch := older[:i], older[i:]
    
    	// Reassemble.
    	return v + incDecimal(patch) + "-0." + segment + build
    }
    
    // ZeroPseudoVersion returns a pseudo-version with a zero timestamp and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  3. pkg/registry/core/replicationcontroller/strategy.go

    	oldRc := old.(*api.ReplicationController)
    	newRc := obj.(*api.ReplicationController)
    
    	opts := pod.GetValidationOptionsFromPodTemplate(newRc.Spec.Template, oldRc.Spec.Template)
    	validationErrorList := corevalidation.ValidateReplicationController(newRc, opts)
    	updateErrorList := corevalidation.ValidateReplicationControllerUpdate(newRc, oldRc, opts)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 16 21:06:10 UTC 2022
    - 9.7K bytes
    - Viewed (0)
  4. releasenotes/notes/es-drop-beta.yaml

      `EndpointSlice` `v1` is automatically used on Kubernetes 1.21+, while `Endpoints` is used on older versions.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 09 02:21:19 UTC 2023
    - 484 bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/writebarrier_test.go

    			Valu("start", OpInitMem, types.TypeMem, 0, nil),
    			Valu("sb", OpSB, c.config.Types.Uintptr, 0, nil),
    			Valu("sp", OpSP, c.config.Types.Uintptr, 0, nil),
    			Valu("v", OpConstNil, ptrType, 0, nil),
    			Valu("addr1", OpAddr, ptrType, 0, nil, "sb"),
    			Valu("wb2", OpStore, types.TypeMem, 0, ptrType, "addr1", "v", "wb1"),
    			Valu("wb1", OpStore, types.TypeMem, 0, ptrType, "addr1", "v", "start"), // wb1 and wb2 are out of order
    			Goto("exit")),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 24 15:51:15 UTC 2018
    - 1.7K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r35/RunTasksBeforeRunActionCrossVersion.groovy

            "build logic defines default tasks"                | "defaultTasks = ['broken']"
            "build logic injects tasks into start param"       | "gradle.startParameter.taskNames = ['broken']"
        }
    
        // older versions do not run any tasks
        @TargetGradleVersion('>=4.7')
        def "empty array of task names means run help task"() {
            file('build.gradle') << """
            """
    
            when:
            withConnection {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  7. pkg/controller/replication/conversion.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // This file contains adapters that convert between RC and RS,
    // as if ReplicationController were an older API version of ReplicaSet.
    // It allows ReplicaSetController to directly replace the old ReplicationManager,
    // which was previously a manually-maintained copy-paste of RSC.
    
    package replication
    
    import (
    	"context"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 14 18:43:33 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  8. cmd/update-notifier_test.go

    		{2 * 365 * 24 * time.Hour, "my_download_url", "2 years before the latest release"},
    	}
    
    	plainMsg := "You are running an older version of MinIO released"
    
    	for i, testCase := range testCases {
    		output := prepareUpdateMessage(testCase.dlURL, testCase.older)
    		line1 := fmt.Sprintf("%s %s", plainMsg, color.YellowBold(testCase.expectedSubStr))
    		line2 := fmt.Sprintf("Update: %s", color.CyanBold(testCase.dlURL))
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jul 31 15:36:19 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  9. releasenotes/notes/33734.yaml

    issue: []
    
    releaseNotes:
    - |
      '**Improved** TCP probes now working as expected: When using TCP probes with older versions of istio the check was always successful, even if the application didn't open the port.'
    
    upgradeNotes:
      - title: TCP probes now working as expected
        content: |
            When using TCP probes with older versions of istio the check was always successful, even if the application didn't open the port.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 26 08:44:57 UTC 2021
    - 842 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_tidy_lazy_self.txt

    # Regression test for https://golang.org/issue/46078:
    # 'go mod tidy' should not panic if the main module initially
    # requires an older version of itself.
    
    # A module may require an older version of itself without error. This is
    # inconsistent (the required version is never selected), but we still get
    # a reproducible build list.
    go list -m all
    stdout '^golang.org/issue/46078$'
    
    # 'go mod tidy' should fix this (and not crash).
    go mod tidy
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 09 20:06:35 UTC 2021
    - 1.5K bytes
    - Viewed (0)
Back to top