Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,337 for 3$ (0.03 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/bundling/ConcurrentArchiveIntegrationTest.groovy

                    file ('file3.txt').text =  'original text 3'
                }
            }
            createTar('test2.tar') {
                subdir1 {
                    file ('file.txt').text = 'original text 1' // Same name in same dir
                }
                subdir3 {
                    file('file3.txt').text = 'original text 3' // Same name in same different nested dir
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 17:32:21 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/rbac/v1/types.go

    )
    
    // Authorization is calculated against
    // 1. evaluation of ClusterRoleBindings - short circuit on match
    // 2. evaluation of RoleBindings in the namespace requested - short circuit on match
    // 3. deny by default
    
    const (
    	APIGroupAll    = "*"
    	ResourceAll    = "*"
    	VerbAll        = "*"
    	NonResourceAll = "*"
    
    	GroupKind          = "Group"
    	ServiceAccountKind = "ServiceAccount"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  3. internal/bucket/lifecycle/lifecycle_test.go

    				Status: "Enabled",
    				Expiration: Expiration{
    					Days: ExpirationDays(3),
    					set:  true,
    				},
    			},
    			{
    				ID:     "rule-2",
    				Status: "Enabled",
    				Transition: Transition{
    					Days:         TransitionDays(3),
    					StorageClass: "TIER-1",
    					set:          true,
    				},
    			},
    			{
    				ID:     "rule-3",
    				Status: "Enabled",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:48 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func NotifyServiceStatusChange(service Handle, notifyMask uint32, notifier *SERVICE_NOTIFY) (ret error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  5. pkg/kubelet/pod_workers_test.go

    	}
    
    	// send a basic update for 3-static
    	podWorkers.workQueue.GetWork()
    	podWorkers.UpdatePod(UpdatePodOptions{
    		Pod:        newNamedPod("3-static", "test1", "pod1", true),
    		UpdateType: kubetypes.SyncPodUpdate,
    	})
    	drainAllWorkers(podWorkers)
    
    	// 3-static should not be started because 2-static is still running
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r73/DeferredConfigurationCrossVersionSpec.groovy

                def executer = builder.build()
                collectOutputs(executer)
                executer.run()
            }
    
            then:
            projectsLoadedModel.projects.size() == 3
            buildFinishedModel.projects.size() == 3
    
            and:
            assertHasConfigureSuccessfulLogging()
            result.assertOutputContains(settingsMessage)
            result.assertNotOutput(rootProjectMessage)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/autoscaling/v1/types.go

    	Name string `json:"name" protobuf:"bytes,2,opt,name=name"`
    
    	// apiVersion is the API version of the referent
    	// +optional
    	APIVersion string `json:"apiVersion,omitempty" protobuf:"bytes,3,opt,name=apiVersion"`
    }
    
    // specification of a horizontal pod autoscaler.
    type HorizontalPodAutoscalerSpec struct {
    	// reference to scaled resource; horizontal pod autoscaler will learn the current resource consumption
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/BuildScriptErrorIntegrationTest.groovy

            failure.assertHasDescription("Could not compile build file '${buildFile}'.")
                    .assertThatCause(containsString("build file '$buildFile': 3: unable to resolve class org.gradle.unknown.Unknown"))
                    .assertHasFileName("Build file '$buildFile'")
                    .assertHasLineNumber(3)
        }
    
        def "produces reasonable error message when buildFile evaluation fails with exception"() {
            when:
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 17:01:37 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceParallelExecutionIntegrationTest.groovy

            given:
            withParallelThreads(3)
    
            buildFile << """
                def service1 = gradle.sharedServices.registerIfAbsent("service1", BuildService) {
                    maxParallelUsages = 2
                }
                def service2 = gradle.sharedServices.registerIfAbsent("service2", BuildService) {
                    maxParallelUsages = 3
                }
    
                project(':a') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  10. src/text/template/exec_test.go

    	{"declare in action", "{{$x := $.U.V}}{{$x}}", "v", tVal, true},
    	{"simple assignment", "{{$x := 2}}{{$x = 3}}{{$x}}", "3", tVal, true},
    	{"nested assignment",
    		"{{$x := 2}}{{if true}}{{$x = 3}}{{end}}{{$x}}",
    		"3", tVal, true},
    	{"nested assignment changes the last declaration",
    		"{{$x := 1}}{{if true}}{{$x := 2}}{{if true}}{{$x = 3}}{{end}}{{end}}{{$x}}",
    		"1", tVal, true},
    
    	// Type with String method.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
Back to top