Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 23 for broken2 (0.38 sec)

  1. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    bradesco
    
    // bridgestone : 2014-12-18 Bridgestone Corporation
    bridgestone
    
    // broadway : 2014-12-22 Celebrate Broadway, Inc.
    broadway
    
    // broker : 2014-12-11 Dog Beach, LLC
    broker
    
    // brother : 2015-01-29 Brother Industries, Ltd.
    brother
    
    // brussels : 2014-02-06 DNS.be vzw
    brussels
    
    // build : 2013-11-07 Plan Bee LLC
    build
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  2. src/net/http/serve_test.go

    			return err
    		}
    		writeErr := make(chan error)
    		go func() {
    			_, err := conn.Write(req)
    			writeErr <- err
    		}()
    		defer func() {
    			conn.Close()
    			// Wait for write to finish. This is a broken pipe on both
    			// Darwin and Linux, but checking this isn't the point of
    			// the test.
    			<-writeErr
    		}()
    
    		br := bufio.NewReader(conn)
    		lineNum := 0
    		for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  3. pkg/printers/internalversion/printers.go

    		{Name: "Age", Type: "string", Description: metav1.ObjectMeta{}.SwaggerDoc()["creationTimestamp"]},
    		{Name: "MissingPL", Type: "string", Description: "references a broken or non-existent PriorityLevelConfiguration"},
    	}
    	_ = h.TableHandler(flowSchemaColumnDefinitions, printFlowSchema)
    	_ = h.TableHandler(flowSchemaColumnDefinitions, printFlowSchemaList)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  4. cmd/object-handlers.go

    		scheduleReplication(ctx, objInfo, objectAPI, dsc, replication.ObjectReplicationType)
    	}
    
    	setPutObjHeaders(w, objInfo, false, r.Header)
    	// We must not use the http.Header().Set method here because some (broken)
    	// clients expect the x-amz-copy-source-version-id header key to be literally
    	// "x-amz-copy-source-version-id"- not in canonicalized form, preserve it.
    	if srcOpts.VersionID != "" {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  5. src/database/sql/sql.go

    			return true
    		}
    		db.maxIdleClosed++
    	}
    	return false
    }
    
    // maxBadConnRetries is the number of maximum retries if the driver returns
    // driver.ErrBadConn to signal a broken connection before forcing a new
    // connection to be opened.
    const maxBadConnRetries = 2
    
    func (db *DB) retry(fn func(strategy connReuseStrategy) error) error {
    	for i := int64(0); i < maxBadConnRetries; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  6. src/crypto/x509/x509_test.go

    	_, err := CreateCertificate(rand.Reader, template, template, testPrivateKey.Public(), &brokenSigner{testPrivateKey.Public()})
    	if err == nil {
    		t.Fatal("expected CreateCertificate to fail with a broken signer")
    	} else if !strings.Contains(err.Error(), expectedErr) {
    		t.Fatalf("CreateCertificate returned an unexpected error: got %q, want %q", err, expectedErr)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  7. src/runtime/proc.go

    	} else {
    		for _, pp := range allp {
    			if pp.status != _Pgcstop {
    				bad = "stopTheWorld: not stopped (status != _Pgcstop)"
    			}
    			if pp.gcStopTime == 0 && bad == "" {
    				bad = "stopTheWorld: broken CPU time accounting"
    			}
    			stoppingCPUTime += finish - pp.gcStopTime
    			pp.gcStopTime = 0
    		}
    	}
    	if freezing.Load() {
    		// Some other thread is panicking. This can cause the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/CacheTest.kt

        assertThat(response.body.string()).isEqualTo("body")
      }
    
      /**
       * Old implementations of OkHttp's response cache wrote header fields like ":status: 200 OK". This
       * broke our cached response parser because it split on the first colon. This regression test
       * exists to help us read these old bad cache entries.
       *
       * https://github.com/square/okhttp/issues/227
       */
      @Test
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
  9. cluster/gce/util.sh

    EOF
          if [[ "${master}" == "false" ]]; then
              # TODO(kubernetes/autoscaler#718): AUTOSCALER_ENV_VARS is a hotfix for cluster autoscaler,
              # which reads the kube-env to determine the shape of a node and was broken by #60020.
              # This should be removed as soon as a more reliable source of information is available!
              local node_labels
              local node_taints
              local autoscaler_env_vars
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/CallTest.kt

              response: Response,
            ) {
              call.cancel()
              try {
                bodyRef.set(response.body.string())
              } catch (e: IOException) {
                // It is ok if this broke the stream.
                bodyRef.set("A")
                throw e // We expect to not loop into onFailure in this case.
              } finally {
                latch.countDown()
              }
            }
          },
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
Back to top