Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 134 for BOGUS (0.04 sec)

  1. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/cli/converter/PropertiesToDaemonParametersConverterTest.groovy

            when:
            converter.convert((DaemonBuildOptions.HealthCheckOption.GRADLE_PROPERTY): 'bogus', params)
    
            then:
            def ex = thrown(IllegalArgumentException)
            ex.message.contains 'org.gradle.daemon.healthcheckinterval'
            ex.message.contains 'bogus'
        }
    
        def "explicitly sets daemon usage if daemon system property is specified - #enabled"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:55 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. src/cmd/internal/src/xpos.go

    	p.lico = p.lico.withIsStmt()
    	return p
    }
    
    // WithBogusLine returns a bogus line that won't match any recorded for the source code.
    // Its use is to disrupt the statements within an infinite loop so that the debugger
    // will not itself loop infinitely waiting for the line number to change.
    // gdb chooses not to display the bogus line; delve shows it with a complaint, but the
    // alternative behavior is to hang.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  3. test/fixedbugs/bug305.go

    // Use //line to set the line number of the next line to 20.
    //line fixedbugs/bug305.go:20
    
    package p
    
    // Introduce an error which should be reported on line 24.
    var a int = "bogus"
    
    // Line 15 of file.
    // 16
    // 17
    // 18
    // 19
    // 20
    // 21
    // 22
    // 23
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 457 bytes
    - Viewed (0)
  4. src/html/template/url_test.go

    			"foo.png, bar.png",
    			"foo.png, bar.png",
    		},
    		{
    			"left bad",
    			"javascript:alert(1), /foo.png",
    			"#ZgotmplZ, /foo.png",
    		},
    		{
    			"right bad",
    			"/bogus#, javascript:alert(1)",
    			"/bogus#,#ZgotmplZ",
    		},
    	}
    
    	for _, test := range tests {
    		if got := srcsetFilterAndEscaper(test.input); got != test.want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 3.9K bytes
    - Viewed (0)
  5. src/mime/mediatype_test.go

    var badMediaTypeTests = []badMediaTypeTest{
    	{"bogus ;=========", "bogus", "mime: invalid media parameter"},
    	// The following example is from real email delivered by gmail (error: missing semicolon)
    	// and it is there to check behavior described in #19498
    	{"application/pdf; x-mac-type=\"3F3F3F3F\"; x-mac-creator=\"3F3F3F3F\" name=\"a.pdf\";",
    		"application/pdf", "mime: invalid media parameter"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 26 17:58:37 UTC 2022
    - 18.1K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/testdata/gateway-secrets.yaml

      servers:
      - port:
          number: 443
          name: https
          protocol: HTTPS
        tls:
          mode: SIMPLE
          credentialName: "httpbin-credential-bogus" # Should break, wrong credential name
        hosts:
        - "httpbin.example.com"
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      name: customgateway-wrongnamespace
    spec:
      selector:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 17 11:51:20 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/analyzers_test.go

    			{msg.ReferencedResourceNotFound, "AuthorizationPolicy httpbin/httpbin-bogus-ns"},
    			{msg.ReferencedResourceNotFound, "AuthorizationPolicy httpbin/httpbin-bogus-ns"},
    			{msg.ReferencedResourceNotFound, "AuthorizationPolicy httpbin/httpbin-bogus-not-ns"},
    			{msg.ReferencedResourceNotFound, "AuthorizationPolicy httpbin/httpbin-bogus-not-ns"},
    			{msg.NoMatchingWorkloadsFound, "AuthorizationPolicy test-ambient/no-workload"},
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/negotiation/negotiate_test.go

    					"Accept": []string{"application/json;as=BOGUS;v=v1beta1;g=meta.k8s.io, application/json"},
    				},
    			},
    			contentType: "application/json",
    			ns:          &fakeNegotiater{serializer: fakeCodec, types: []string{"application/json"}},
    			serializer:  fakeCodec,
    		},
    		{
    			req: &http.Request{
    				Header: http.Header{
    					"Accept": []string{"application/BOGUS, application/json"},
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 10 10:53:34 UTC 2019
    - 9K bytes
    - Viewed (0)
  9. security/pkg/pki/util/crypto_test.go

    	}
    
    	// check only first string passed if second is bogus
    	certBytes = []byte(certRSA)
    	certBytes = AppendCertByte(certBytes, []byte("Bogus"))
    	result = PemCertBytestoString(certBytes)
    	cert1 = strings.TrimSuffix(strings.TrimPrefix(certRSA, "\n"), "\n")
    	if !reflect.DeepEqual(result, []string{cert1}) {
    		t.Errorf("Bogus comparison fails!")
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 13:00:07 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  10. src/net/http/cgi/host.go

    		if !ok {
    			h.printf("cgi: bogus header line: %s", line)
    			continue
    		}
    		if !httpguts.ValidHeaderFieldName(header) {
    			h.printf("cgi: invalid header name: %q", header)
    			continue
    		}
    		val = textproto.TrimString(val)
    		switch {
    		case header == "Status":
    			if len(val) < 3 {
    				h.printf("cgi: bogus status (short): %q", val)
    				return
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top