Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for broken1 (0.13 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

                        println "Transformed \$input.name to \$output.name into \$outputDirectory"
    
                        if (System.getProperty("broken")) {
                            new File(outputDirectory, "some-garbage").text = "delete-me"
                            throw new RuntimeException("broken")
                        }
                    }
                }
    
                allprojects {
                    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_pods_test.go

    				# TYPE kubelet_orphaned_runtime_pods_total counter
    				kubelet_orphaned_runtime_pods_total 1
    				`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  3. src/net/http/transport_test.go

    	*brokenState
    }
    
    type brokenState struct {
    	sync.Mutex
    	broken bool
    }
    
    func (w *breakableConn) Write(b []byte) (n int, err error) {
    	w.Lock()
    	defer w.Unlock()
    	if w.broken {
    		return 0, errors.New("some write error")
    	}
    	return w.Conn.Write(b)
    }
    
    // Issue 34978: don't cache a broken HTTP/2 connection
    func TestDontCacheBrokenHTTP2Conn(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/exec.go

    	// backslash is really an escape at all.
    	if quote != 0 {
    		return nil, errors.New("unterminated quoted string in pkgconf output")
    	}
    	if escaped {
    		return nil, errors.New("broken character escaping in pkgconf output")
    	}
    
    	if len(flag) > 0 || didQuote {
    		flags = append(flags, string(flag))
    	}
    	return flags, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
Back to top