Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 39 of 39 for Option (0.11 sec)

  1. pkg/controller/job/job_controller.go

    	}
    
    	completionMode := getCompletionMode(&job)
    	action := metrics.JobSyncActionReconciling
    
    	defer func() {
    		result := "success"
    		if rErr != nil {
    			result = "error"
    		}
    
    		metrics.JobSyncDurationSeconds.WithLabelValues(completionMode, result, action).Observe(jm.clock.Since(startTime).Seconds())
    		metrics.JobSyncNum.WithLabelValues(completionMode, result, action).Inc()
    	}()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

            when:
            run("unused")
    
            then:
            output.count("service:") == 0
            output.count("Service not used") == 1
        }
    
        def "can use service from task doFirst() or doLast() action"() {
            serviceImplementation()
            buildFile << """
                def provider = gradle.sharedServices.registerIfAbsent("counter", CountingService) {
                    parameters.initial = 10
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

                is FirBlock -> psi as? KtExpression
                else -> realPsi as? KtExpression
            }
        }
    
        private inline fun <R> wrapError(element: KtElement, action: () -> R): R {
            return try {
                action()
            } catch (e: Exception) {
                rethrowExceptionWithDetails(
                    "Error during resolving call ${element::class}",
                    exception = e,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

                it.assertHasCause("Failed to transform thing2-1.2.jar (group:thing2:1.2) to match attributes {artifactType=jar, color=green, org.gradle.status=release}.")
            }
        }
    
        def 'transform action is re-executed when input artifact changes'() {
            given:
            buildKotlinFile '''
    
    abstract class Summarize : TransformAction<TransformParameters.None> {
    
        @get:InputArtifact
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	// store pointer of eligible objects,
    	// Why not directly put object in the items of listObj?
    	//   the elements in ListObject are Struct type, making slice will bring excessive memory consumption.
    	//   so we try to delay this action as much as possible
    	var selectedObjects []runtime.Object
    	for _, obj := range objs {
    		elem, ok := obj.(*storeElement)
    		if !ok {
    			return fmt.Errorf("non *storeElement returned from storage: %v", obj)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  6. pkg/proxy/nftables/proxier.go

    	dstChain  string
    	srcChain  string
    	extraArgs string
    }
    
    var nftablesJumpChains = []nftablesJumpChain{
    	// We can't jump to endpointsCheckChain from filter-prerouting like
    	// firewallCheckChain because reject action is only valid in chains using the
    	// input, forward or output hooks with kernels before 5.9.
    	{nodePortEndpointsCheckChain, filterInputChain, "ct state new"},
    	{serviceEndpointsCheckChain, filterInputChain, "ct state new"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  7. src/time/format.go

    	buf = append(buf, ", "...)
    	switch loc := t.Location(); loc {
    	case UTC, nil:
    		buf = append(buf, "time.UTC"...)
    	case Local:
    		buf = append(buf, "time.Local"...)
    	default:
    		// there are several options for how we could display this, none of
    		// which are great:
    		//
    		// - use Location(loc.name), which is not technically valid syntax
    		// - use LoadLocation(loc.name), which will cause a syntax error when
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  8. tests/integration/ambient/baseline_test.go

    				Key:                string(cert.Key),
    				CaCert:             string(cert.RootCert),
    				InsecureSkipVerify: true,
    			}
    			run := func(name string, options echo.CallOptions) {
    				t.NewSubTest(name).Run(func(t framework.TestContext) {
    					_, err := c.CallEcho(nil, options)
    					if err != nil {
    						t.Fatal(err)
    					}
    				})
    			}
    			run("named destination", echo.CallOptions{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/listener_test.go

    		Spec: &security.AuthorizationPolicy{
    			Selector:     nil,
    			TargetRef:    nil,
    			Rules:        nil,
    			Action:       security.AuthorizationPolicy_CUSTOM,
    			ActionDetail: &security.AuthorizationPolicy_Provider{Provider: &security.AuthorizationPolicy_ExtensionProvider{Name: "extauthz"}},
    		},
    	},
    	{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
Back to top