Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for blahblah (0.1 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/ComponentSelectorParsersTest.groovy

            then:
            thrown(InvalidUserDataException)
        }
    
        def "reports invalid format for string notation"() {
            when:
            multiParser().parseNotation(["blahblah"])
    
            then:
            thrown(InvalidUserDataException)
        }
    
        def "reports invalid missing data for string notation"() {
            when:
            multiParser().parseNotation([":foo:"])
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/ModuleVersionSelectorParsersTest.groovy

            then:
            thrown(InvalidUserDataException)
        }
    
        def "reports invalid format for string notation"() {
            when:
            multiParser("").parseNotation(["blahblah"])
    
            then:
            thrown(InvalidUserDataException)
        }
    
        def "reports invalid missing data for string notation"() {
            when:
            multiParser("").parseNotation([":foo:"])
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  3. src/cmd/go/internal/imports/testdata/star/x1.go

    //go:build blahblh && linux && !linux && windows && darwin
    // +build blahblh,linux,!linux,windows,darwin
    
    package x
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 134 bytes
    - Viewed (0)
  4. pkg/proxy/ipvs/proxier_test.go

    		}),
    		makeTestService("somewhere-else", "node-port", func(svc *v1.Service) {
    			svc.Spec.Type = v1.ServiceTypeNodePort
    			svc.Spec.ClusterIP = "172.16.55.10"
    			svc.Spec.Ports = addTestPort(svc.Spec.Ports, "blahblah", "UDP", 345, 678, 0)
    			svc.Spec.Ports = addTestPort(svc.Spec.Ports, "moreblahblah", "TCP", 344, 677, 0)
    			svc.Spec.Ports = addTestPort(svc.Spec.Ports, "sctpblah", "SCTP", 343, 676, 0)
    		}),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  5. pkg/proxy/nftables/proxier_test.go

    		}),
    		makeTestService("somewhere-else", "node-port", func(svc *v1.Service) {
    			svc.Spec.Type = v1.ServiceTypeNodePort
    			svc.Spec.ClusterIP = "172.30.55.10"
    			svc.Spec.Ports = addTestPort(svc.Spec.Ports, "blahblah", "UDP", 345, 678, 0)
    			svc.Spec.Ports = addTestPort(svc.Spec.Ports, "moreblahblah", "TCP", 344, 677, 0)
    			svc.Spec.Ports = addTestPort(svc.Spec.Ports, "muchmoreblah", "SCTP", 343, 676, 0)
    		}),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  6. pkg/kubelet/apis/config/validation/validation_reserved_memory_test.go

    					{
    						NumaNode: 0,
    						Limits: v1.ResourceList{
    							"blabla": *resource.NewQuantity(128, resource.DecimalSI),
    						},
    					},
    				},
    			},
    			expectedError: fmt.Errorf("invalid configuration: the limit type %q for NUMA node %d is not supported, only [memory hugepages-<HugePageSize>] is accepted", "blabla", 0),
    		},
    		{
    			description: "The reserved memory has limit type with zero value",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 18 13:38:01 UTC 2021
    - 3.7K bytes
    - Viewed (0)
  7. pkg/proxy/iptables/proxier_test.go

    		}),
    		makeTestService("somewhere-else", "node-port", func(svc *v1.Service) {
    			svc.Spec.Type = v1.ServiceTypeNodePort
    			svc.Spec.ClusterIP = "172.30.55.10"
    			svc.Spec.Ports = addTestPort(svc.Spec.Ports, "blahblah", "UDP", 345, 678, 0)
    			svc.Spec.Ports = addTestPort(svc.Spec.Ports, "moreblahblah", "TCP", 344, 677, 0)
    			svc.Spec.Ports = addTestPort(svc.Spec.Ports, "muchmoreblah", "SCTP", 343, 676, 0)
    		}),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  8. samples/extauthz/README.md

           * Connection #0 to host ext-authz-server left intact
        ```
    
        As you observe, the check request with header `x-ext-authz: allow` is allowed by the Ext Authz server.
    
        Send another check request with `x-ext-authz: blabla` to the Ext Authz server:
    
        ```console
        $ kubectl exec -it $(kubectl get pod -l app=sleep -o jsonpath={.items..metadata.name}) -c sleep -- curl -v ext-authz:8000 -H "x-ext-authz: bla"
            > GET / HTTP/1.1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 21 13:52:47 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenHttpRepoResolveIntegrationTest.groovy

            into 'libs'
            from configurations.compile
        }
        """
    
            def m2Home = file("M2_REPO")
            def settingsFile = m2Home.file("conf/settings.xml")
            settingsFile << "invalid content... blabla"
    
            when:
            projectA.pom.expectGet()
            projectA.artifact.expectGet()
            projectB.pom.expectGet()
            projectB.artifact.expectGet()
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.6K bytes
    - Viewed (0)
Back to top