Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 109 for broken3 (0.31 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/execution/taskgraph/ParallelTaskExecutionIntegrationTest.groovy

                        throw new RuntimeException('BOOM!')
                    }
    
                    @TaskAction
                    void doSomething() {
                        println "Executing broken task..."
                    }
                }
    
                task brokenTask(type: BrokenTask)
                aPing.finalizedBy brokenTask
            """
    
            expect:
            2.times {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 14:00:51 UTC 2024
    - 21K bytes
    - Viewed (0)
  2. src/runtime/crash_test.go

    	if err != nil {
    		t.Fatalf("could not create trace.NewReader: %v", err)
    	}
    	var seen, seenSync bool
    	i := 1
    loop:
    	for ; ; i++ {
    		ev, err := r.ReadEvent()
    		if err != nil {
    			// We may have a broken tail to the trace -- that's OK.
    			// We'll make sure we saw at least one complete generation.
    			if err != io.EOF {
    				t.Logf("error at event %d: %v", i, err)
    			}
    			break loop
    		}
    		switch ev.Kind() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 19:46:10 UTC 2024
    - 27K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/base/Equivalence.java

       * relation. That is, invoking {@link Function#apply} multiple times for a given value must return
       * equivalent results. For example, {@code
       * Equivalence.identity().onResultOf(Functions.toStringFunction())} is broken because it's not
       * guaranteed that {@link Object#toString}) always returns the same string instance.
       *
       * @since 10.0
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu May 16 14:34:47 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  4. cmd/object-handlers-common.go

    // to activate delete only headers set delete as true
    func setPutObjHeaders(w http.ResponseWriter, objInfo ObjectInfo, delete bool, h http.Header) {
    	// We must not use the http.Header().Set method here because some (broken)
    	// clients expect the ETag header key to be literally "ETag" - not "Etag" (case-sensitive).
    	// Therefore, we have to set the ETag directly as map entry.
    	if objInfo.ETag != "" && !delete {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/listener_builder.go

    		filters = extension.PopAppendHTTP(filters, wasm, extensions.PluginPhase_UNSPECIFIED_PHASE)
    	}
    
    	if httpOpts.protocol == protocol.GRPCWeb {
    		// TODO: because we share an HCM between many services, this check is broken; it will only work if the first
    		// GRPCWeb is probably only used for Gateways though, which don't have this concern.
    		filters = append(filters, xdsfilters.GrpcWeb)
    	}
    
    	filters = append(filters, xdsfilters.GrpcStats)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  6. src/cmd/doc/main.go

    func main() {
    	log.SetFlags(0)
    	log.SetPrefix("doc: ")
    	telemetry.Start()
    	dirsInit()
    	err := do(os.Stdout, flag.CommandLine, os.Args[1:])
    	if err != nil {
    		log.Fatal(err)
    	}
    }
    
    // do is the workhorse, broken out of main to make testing easier.
    func do(writer io.Writer, flagSet *flag.FlagSet, args []string) (err error) {
    	flagSet.Usage = usage
    	unexported = false
    	matchCase = false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  7. pkg/controlplane/controller/clusterauthenticationtrust/cluster_authentication_trust_controller.go

    	// to avoid hotlooping on particular items (they're probably still not going to work right away)
    	// and overall controller protection (everything I've done is broken, this controller needs to
    	// calm down or it can starve other useful work) cases.
    	c.queue.AddRateLimited(key)
    
    	return true
    }
    
    func keyFn() string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  8. src/crypto/tls/handshake_client.go

    		if err != nil {
    			return errors.New("tls: short read from Rand: " + err.Error())
    		}
    
    		// NOTE: we don't do PSK GREASE, in line with boringssl, it's meant to
    		// work around _possibly_ broken middleboxes, but there is little-to-no
    		// evidence that this is actually a problem.
    
    		if err := computeAndUpdateOuterECHExtension(hello, ech.innerHello, ech, true); err != nil {
    			return err
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  9. docs/en/docs/help-fastapi.md

        Several times it has happened that there are PRs with 3, 5 or more approvals, probably because the description is appealing, but when I check the PRs, they are actually broken, have a bug, or don't solve the problem they claim to solve. 😅
    
        So, it's really important that you actually read and run the code, and let me know in the comments that you did. 🤓
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  10. src/net/http/cookiejar/jar.go

    		}
    	} else {
    		suffix := psl.PublicSuffix(host)
    		if suffix == host {
    			return host
    		}
    		i = len(host) - len(suffix)
    		if i <= 0 || host[i-1] != '.' {
    			// The provided public suffix list psl is broken.
    			// Storing cookies under host is a safe stopgap.
    			return host
    		}
    		// Only len(suffix) is used to determine the jar key from
    		// here on, so it is okay if psl.PublicSuffix("www.buggy.psl")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15K bytes
    - Viewed (0)
Back to top