Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 175 for NEW (0.04 sec)

  1. src/cmd/go/internal/work/exec.go

    		p.Stale = true
    		p.StaleReason = "binary-only packages are no longer supported"
    		if b.IsCmdList {
    			return nil
    		}
    		return errors.New("binary-only packages are no longer supported")
    	}
    
    	if p.Module != nil && !allowedVersion(p.Module.GoVersion) {
    		return errors.New("module requires Go " + p.Module.GoVersion + " or later")
    	}
    
    	if err := b.checkDirectives(a); err != nil {
    		return err
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  2. cmd/site-replication.go

    		Cause: errors.New("site replication resync is already in progress"),
    		Code:  ErrSiteReplicationInvalidRequest,
    	}
    	errSRResyncCanceled = SRError{
    		Cause: errors.New("site replication resync is already canceled"),
    		Code:  ErrSiteReplicationInvalidRequest,
    	}
    	errSRNoResync = SRError{
    		Cause: errors.New("no resync in progress"),
    		Code:  ErrSiteReplicationInvalidRequest,
    	}
    	errSRResyncToSelf = SRError{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  3. src/cmd/go/internal/load/pkg.go

    					// this mess).
    				} else {
    					data.err = r.err
    				}
    			}
    		} else if r.err != nil {
    			data.p = new(build.Package)
    			data.err = r.err
    		} else if cfg.ModulesEnabled && path != "unsafe" {
    			data.p = new(build.Package)
    			data.err = fmt.Errorf("unknown import path %q: internal error: module loader did not resolve import", r.path)
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/optimize.cc

          if (addend_shape.getShape().size() != 1) return failure();
        }
    
        // Calculate new bias.  Generate a new FC; it will be constant folded.
        auto old_bias = fc_op.getBias();
        if (!old_bias || mlir::isa<NoneType>(old_bias.getType())) {
          // TODO(b/180752069): Figure out new bias' type when old bias is empty.
          return failure();
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  5. pkg/volume/util/operationexecutor/operation_generator.go

    	return &operationGenerator{
    		kubeClient:      kubeClient,
    		volumePluginMgr: volumePluginMgr,
    		recorder:        recorder,
    		blkUtil:         blkUtil,
    		translator:      csitrans.New(),
    	}
    }
    
    // OperationGenerator interface that extracts out the functions from operation_executor to make it dependency injectable
    type OperationGenerator interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_pods_test.go

    		[]string{"ls"})
    	assert.Error(t, err)
    	assert.Nil(t, output, "output should be nil")
    }
    
    func TestRunInContainer(t *testing.T) {
    	ctx := context.Background()
    	for _, testError := range []error{nil, errors.New("bar")} {
    		testKubelet := newTestKubelet(t, false /* controllerAttachDetachEnabled */)
    		defer testKubelet.Cleanup()
    		kubelet := testKubelet.kubelet
    		fakeRuntime := testKubelet.fakeRuntime
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

       ...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  8. pkg/proxy/nftables/proxier_test.go

    		add rule ip kube-proxy filter-prerouting ct state new jump firewall-check
    		add rule ip kube-proxy filter-forward ct state new jump service-endpoints-check
    		add rule ip kube-proxy filter-forward ct state new jump cluster-ips-check
    		add rule ip kube-proxy filter-input ct state new jump nodeport-endpoints-check
    		add rule ip kube-proxy filter-input ct state new jump service-endpoints-check
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  9. doc/go1.17_spec.html

    (or the parameter lists if the block is the function body) with the same type,
    and at least one of the non-<a href="#Blank_identifier">blank</a> variables is new.
    As a consequence, redeclaration can only appear in a multi-variable short declaration.
    Redeclaration does not introduce a new variable; it just assigns a new value to the original.
    </p>
    
    <pre>
    field1, offset := nextField(str, 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

        server.enqueue(mockResponse.build())
        server.enqueue(MockResponse(body = "This is the new location!"))
        val response = getResponse(newRequest("/"))
        assertThat(readAscii(response.body.byteStream(), Int.MAX_VALUE)).isEqualTo(
          "This is the new location!",
        )
        val first = server.takeRequest()
        assertThat(first.requestLine).isEqualTo("GET / HTTP/1.1")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
Back to top