Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 28 of 28 for sing (0.25 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

    //
    // can be canonicalized to
    //
    //   %shape = "tf.Const"() {value = dense<[1, 2, 3]> : tensor<3xi64>}
    //   %0 = tf.Reshape(%input, %shape)
    struct ConvertPackToReshape : public OpRewritePattern<PackOp> {
      using OpRewritePattern<PackOp>::OpRewritePattern;
    
      LogicalResult matchAndRewrite(PackOp pack_op,
                                    PatternRewriter &rewriter) const override {
        // Check if there is only one operand to be packed.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  2. cmd/site-replication.go

    			return madmin.ReplicateAddStatus{}, errSRInvalidRequest(fmt.Errorf("all existing replicated sites must be specified - missing %s", strings.Join(diffSlc, " ")))
    		}
    	}
    
    	// validate that all clusters are using the same IDP settings.
    	err = c.validateIDPSettings(ctx, sites)
    	if err != nil {
    		return madmin.ReplicateAddStatus{}, err
    	}
    
    	// For this `add` API, either all clusters must be empty or the local
    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. pkg/kubelet/kubelet.go

    	apiPodStatus := kl.generateAPIPodStatus(pod, podStatus, false)
    	// The pod IP may be changed in generateAPIPodStatus if the pod is using host network. (See #24576)
    	// TODO(random-liu): After writing pod spec into container labels, check whether pod is using host network, and
    	// set pod IP to hostIP directly in runtime.GetPodStatus
    	podStatus.IPs = make([]string, 0, len(apiPodStatus.PodIPs))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/data.go

    			if rt == objabi.R_PEIMAGEOFF {
    				// The R_PEIMAGEOFF offset is a RVA, so subtract
    				// the base address for the executable.
    				o -= PEBASE
    			}
    
    			// On amd64, 4-byte offsets will be sign-extended, so it is impossible to
    			// access more than 2GB of static data; fail at link time is better than
    			// fail at runtime. See https://golang.org/issue/7980.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  5. cluster/gce/util.sh

    #   SUBNETWORK
    #   IP_ALIAS_SUBNETWORK
    function detect-subnetworks() {
      if [[ -n ${SUBNETWORK:-} ]]; then
        echo "Using subnet ${SUBNETWORK}"
        return 0
      fi
    
      if [[ -n ${IP_ALIAS_SUBNETWORK:-} ]]; then
        SUBNETWORK=${IP_ALIAS_SUBNETWORK}
        echo "Using IP Alias subnet ${SUBNETWORK}"
        return 0
      fi
    
      SUBNETWORK=$(gcloud compute networks subnets list \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  6. src/reflect/all_test.go

    	m = ValueOf(struct{ m map[string]int }{data}).Field(0)
    	for iter := m.MapRange(); iter.Next(); {
    		shouldPanic("using value obtained using unexported field", func() {
    			k.SetIterKey(iter)
    		})
    		shouldPanic("using value obtained using unexported field", func() {
    			v.SetIterValue(iter)
    		})
    	}
    }
    
    func TestMethodCallValueCodePtr(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  7. cmd/object-handlers_test.go

    			instanceType, bucketName, objectName, err)
    	}
    
    	// ExecObjectLayerAPIAnonTest - Calls the HTTP API handler using the anonymous request, validates the ErrAccessDeniedResponse,
    	// sets the bucket policy using the policy statement generated from `getWriteOnlyObjectStatement` so that the
    	// unsigned request goes through and its validated again.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  8. src/net/http/transport_test.go

    			}
    			return false
    		}
    		return true
    	})
    }
    
    func TestTransportCancelRequestBeforeDo(t *testing.T) {
    	// We can't cancel a request that hasn't started using Transport.CancelRequest.
    	run(t, func(t *testing.T, mode testMode) {
    		t.Run("RequestCancel", func(t *testing.T) {
    			runCancelTestChannel(t, mode, testTransportCancelRequestBeforeDo)
    		})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
Back to top