Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for DoesNotExist (0.17 sec)

  1. pkg/apis/core/v1/helper/helpers.go

    		op = selection.In
    	case v1.ScopeSelectorOpNotIn:
    		op = selection.NotIn
    	case v1.ScopeSelectorOpExists:
    		op = selection.Exists
    	case v1.ScopeSelectorOpDoesNotExist:
    		op = selection.DoesNotExist
    	default:
    		return nil, fmt.Errorf("%q is not a valid scope selector operator", ssr.Operator)
    	}
    	r, err := labels.NewRequirement(string(ssr.ScopeName), op, ssr.Values)
    	if err != nil {
    		return nil, err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 23:03:54 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. pkg/registry/batch/cronjob/strategy_test.go

    			},
    		},
    	}
    	cronjobSpecWithTZinSchedule = batch.CronJobSpec{
    		Schedule:          "CRON_TZ=UTC 5 5 * * ?",
    		ConcurrencyPolicy: batch.AllowConcurrent,
    		TimeZone:          ptr.To("Asia/DoesNotExist"),
    		JobTemplate: batch.JobTemplateSpec{
    			Spec: batch.JobSpec{
    				Template: validPodTemplateSpec,
    			},
    		},
    	}
    )
    
    func completionModePtr(m batch.CompletionMode) *batch.CompletionMode {
    	return &m
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 14:34:53 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/logging/GroupedOutputFixtureTest.groovy

    """
            GroupedOutputFixture groupedOutput = new GroupedOutputFixture(LogContent.of(consoleOutput))
    
            when:
            groupedOutput.task(':doesNotExist')
    
            then:
            def t = thrown(AssertionError)
            t.message.startsWith("The grouped output for task ':doesNotExist' could not be found.")
        }
    
        def "handles output right before end of failed build"() {
            given:
            def consoleOutput = """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  4. guava-gwt/pom.xml

              <!-- The above exclusion doesn't actually matter unless I prevent Javadoc from autodiscovering the source in the sourcepath, which defaults to the source directory :\ Boo for -sourcepath. -->
              <sourcepath>doesnotexist</sourcepath>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 15:00:55 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  5. android/pom.xml

                       (Compare what guava-gwt has to do for maven-javadoc-plugin.)
                  -->
                  <arg>-sourcepath</arg>
                  <arg>doesnotexist</arg>
                  <!-- https://errorprone.info/docs/installation#maven -->
                  <arg>-XDcompilePolicy=simple</arg>
                  <!-- -Xplugin:ErrorProne is set conditionally by a profile. -->
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  6. pom.xml

                       (Compare what guava-gwt has to do for maven-javadoc-plugin.)
                  -->
                  <arg>-sourcepath</arg>
                  <arg>doesnotexist</arg>
                  <!-- https://errorprone.info/docs/installation#maven -->
                  <arg>-XDcompilePolicy=simple</arg>
                  <!-- -Xplugin:ErrorProne is set conditionally by a profile. -->
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/endpointslice.go

    	endpointCache *endpointSliceCache
    	slices        kclient.Client[*v1.EndpointSlice]
    	c             *Controller
    }
    
    var (
    	endpointSliceRequirement = labelRequirement(mcs.LabelServiceName, selection.DoesNotExist, nil)
    	endpointSliceSelector    = klabels.NewSelector().Add(*endpointSliceRequirement)
    )
    
    func newEndpointSliceController(c *Controller) *endpointSliceController {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  8. cmd/kube-proxy/app/server.go

    	noProxyName, err := labels.NewRequirement(apis.LabelServiceProxyName, selection.DoesNotExist, nil)
    	if err != nil {
    		return err
    	}
    
    	noHeadlessEndpoints, err := labels.NewRequirement(v1.IsHeadlessService, selection.DoesNotExist, nil)
    	if err != nil {
    		return err
    	}
    
    	labelSelector := labels.NewSelector()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:27:41 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  9. operator/cmd/mesh/manifest-generate_test.go

        apiVersions: ["v1"]
        resources: ["pods"]
      failurePolicy: Fail
      admissionReviewVersions: ["v1beta1", "v1"]
      namespaceSelector:
        matchExpressions:
        - key: istio-injection
          operator: DoesNotExist
        - key: istio.io/rev
          operator: In
          values:
          - canary
      objectSelector:
        matchExpressions:
        - key: "sidecar.istio.io/inject"
          operator: NotIn
          values:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 43.5K bytes
    - Viewed (0)
Back to top