Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 936 for Bad (0.12 sec)

  1. security/pkg/pki/util/keycertbundle_test.go

    			caKeyFile:     intKeyFile,
    			certChainFile: []string{"bad.pem"},
    			rootCertFile:  rootCertFile,
    			expectedErr:   "open bad.pem: no such file or directory",
    		},
    		"Failure - no root cert file": {
    			caCertFile:    intCertFile,
    			caKeyFile:     intKeyFile,
    			certChainFile: nil,
    			rootCertFile:  "bad.pem",
    			expectedErr:   "open bad.pem: no such file or directory",
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jan 21 06:07:50 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  2. src/go/ast/scope.go

    type ObjKind int
    
    // The list of possible [Object] kinds.
    const (
    	Bad ObjKind = iota // for error handling
    	Pkg                // package
    	Con                // constant
    	Typ                // type
    	Var                // variable
    	Fun                // function or method
    	Lbl                // label
    )
    
    var objKindStrings = [...]string{
    	Bad: "bad",
    	Pkg: "package",
    	Con: "const",
    	Typ: "type",
    	Var: "var",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 21:32:41 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. src/internal/dag/parse.go

    					}
    					g.AddEdge(i, j)
    				}
    			}
    		}
    	}
    
    	// Check negative assertions against completed allowed graph.
    	for _, bad := range disallowed {
    		for _, less := range bad.less {
    			for _, def := range bad.def {
    				if g.HasEdge(def, less) {
    					errorf("graph edge assertion failed: %s !< %s", less, def)
    				}
    			}
    		}
    	}
    
    	if len(errors) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. src/runtime/tracestatus.go

    func (w traceWriter) writeGoStatus(goid uint64, mid int64, status traceGoStatus, markAssist bool, stackID uint64) traceWriter {
    	// The status should never be bad. Some invariant must have been violated.
    	if status == traceGoBad {
    		print("runtime: goid=", goid, "\n")
    		throw("attempted to trace a bad status for a goroutine")
    	}
    
    	// Trace the status.
    	if stackID == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:03:35 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/dependencyManagement/definingUsingConfigurations-custom/groovy/src/main/webapp/hello.jsp

    <html>
    <head><title>Randomizer</title></head>
    <body>
    <%
        double num = Math.random();
        if (num > 0.5) {
    %>
    <h2>It's your lucky day!</h2><p>(<%= num %>)</p>
    <%
    } else {
    %>
    <h2>Sorry...bad day</h2><p>(<%= num %>)</p>
    <%
        }
    %>
    <a href="<%= request.getRequestURI() %>"><h3>Try Again</h3></a>
    </body>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 312 bytes
    - Viewed (0)
  6. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/AbstractCaseVfsRelativePathTest.groovy

            ["bAdA"],
            ["bAdA", "BaDb"],
            ["bAdA", "BaDb", "Badc"],
            ["bAdA/something", "BaDb/other", "Badc/different"],
            ["bad/mine", "c/other", "ab/second"],
            ["Bad/mine", "c/other", "aB/second"],
            ["Bad/mine", "c/other", "AB/second"],
            ["Bad/mine", "cA/other", "AB/second"],
            ["c", "b/something", "a/very/long/suffix"]
        ]*.toSorted(getPathComparator(CASE_SENSITIVE))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resolve/result/DefaultBuildableModuleComponentMetaDataResolveResultTest.groovy

            descriptor.failure == null
            descriptor.authoritative
            descriptor.hasResult()
        }
    
        def "can mark as failed"() {
            org.gradle.internal.Factory<String> broken = { "too bad" }
            def failure = new ModuleVersionResolveException(newSelector(DefaultModuleIdentifier.newId("a", "b"), "c"), broken)
    
            when:
            descriptor.failed(failure)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/dependencyManagement/definingUsingConfigurations-custom/kotlin/src/main/webapp/hello.jsp

    <html>
    <head><title>Randomizer</title></head>
    <body>
    <%
        double num = Math.random();
        if (num > 0.5) {
    %>
    <h2>It's your lucky day!</h2><p>(<%= num %>)</p>
    <%
    } else {
    %>
    <h2>Sorry...bad day</h2><p>(<%= num %>)</p>
    <%
        }
    %>
    <a href="<%= request.getRequestURI() %>"><h3>Try Again</h3></a>
    </body>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 312 bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/DefaultComponentMetadataHandlerTest.groovy

            e.message == "bad action"
    
            and:
            1 * adapter.createFromAction(action) >> { throw new InvalidUserCodeException("bad action") }
        }
    
        def "propagates error creating rule for rule source"() {
            when:
            mockedHandler.all(new Object())
    
            then:
            def e = thrown(InvalidUserCodeException)
            e.message == "bad rule source"
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  10. src/testing/fstest/testfs.go

    func (t *fsTester) checkBadPath(file string, desc string, open func(string) error) {
    	bad := []string{
    		"/" + file,
    		file + "/.",
    	}
    	if file == "." {
    		bad = append(bad, "/")
    	}
    	if i := strings.Index(file, "/"); i >= 0 {
    		bad = append(bad,
    			file[:i]+"//"+file[i+1:],
    			file[:i]+"/./"+file[i+1:],
    			file[:i]+`\`+file[i+1:],
    			file[:i]+"/../"+file,
    		)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.3K bytes
    - Viewed (0)
Back to top