Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 46 for below (0.06 sec)

  1. src/cmd/link/internal/ld/data.go

    //	     13c: e8 00 00 00 00               	callq	0x141 <pow+0x141>
    //			000000000000013d:  IMAGE_REL_AMD64_REL32	_errno
    //
    // The assembly below dispenses with the import symbol and just makes
    // a direct call to _errno.
    //
    // The code below handles indirect refs by redirecting the target of
    // the relocation from "__imp_XYZ" to "XYZ" (since the latter symbol
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/exec.go

    		}
    	}
    
    	// Load cached vet config, but only if that's all we have left
    	// (need == needVet, not testing just the one bit).
    	// If we are going to do a full build anyway,
    	// we're going to regenerate the files below anyway.
    	if need == needVet {
    		if err := b.loadCachedVet(a); err == nil {
    			need &^= needVet
    		}
    	}
    	if need == 0 {
    		return nil
    	}
    
    	if err := AllowInstall(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)
  3. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

        ArrayRef<int64_t> output_spatial_dims = dnums.getOutputSpatialDimensions();
        for (size_t i = 0; i < num_spatial_dims; ++i) {
          // In some cases the total padding is odd, so we have 1 leftover, which is
          // why below we check pad_delta > 1.
          int64_t pad_delta = std::abs(padding[2 * i] - padding[2 * i + 1]);
          if (pad_delta > 1) {
            return false;
          }
          int64_t stride = strides[i + 1];
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  4. pkg/volume/util/operationexecutor/operation_generator.go

    			return volumetypes.NewOperationContext(eventErr, detailedErr, migrated)
    		}
    
    		// Mark the device as uncertain to make sure kubelet calls UnmapDevice again in all the "return err"
    		// cases below. The volume is marked as fully un-mapped at the end of this function, when everything
    		// succeeds.
    		markVolumeOpts := MarkVolumeOpts{
    			PodName:             volumeToUnmount.PodName,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"type(self.nestedInList[0]) == type(self.nestedInList[1])",
    			},
    			errors: map[string]string{
    				// Note that errors, like the below, do print the type name, but it changes each time a CRD is updated.
    				// Type name printed in the below error will be of the form "<uuid>.nestedInList.@idx".
    
    				// Developers may not cast the type of variables as a string:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  6. src/net/http/server.go

    		}()
    	}
    
    	c.r.setReadLimit(c.server.initialReadLimitSize())
    	if c.lastMethod == "POST" {
    		// RFC 7230 section 3 tolerance for old buggy clients.
    		peek, _ := c.bufr.Peek(4) // ReadRequest will get err below
    		c.bufr.Discard(numLeadingCRorLF(peek))
    	}
    	req, err := readRequest(c.bufr)
    	if err != nil {
    		if c.r.hitReadLimit() {
    			return nil, errTooLarge
    		}
    		return nil, err
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_pods.go

    // If the tool is not installed, or there are no IDs configured, the default mapping is returned.
    // The default mapping includes the entire IDs range except IDs below 65536.
    func (kl *Kubelet) getKubeletMappings() (uint32, uint32, error) {
    	// default mappings to return if there is no specific configuration
    	const defaultFirstID = 1 << 16
    	const defaultLen = 1<<32 - defaultFirstID
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

              return GetTypeFromTFTensorShape(shape, element_type);
            }
          }
        }
    
        return mlir::UnrankedTensorType::get(element_type);
      };
    
      // Below we only try and do some shape inference for "source" ops which have
      // no inputs.
      if (node.num_inputs() > 0) return default_type();
    
      // Do some simply inference here to get the function arguments correct for
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  9. cmd/object-handlers.go

    		writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrEntityTooLarge), r.URL)
    		return
    	}
    
    	// We have to copy metadata only if source and destination are same.
    	// this changes for encryption which can be observed below.
    	if cpSrcDstSame {
    		srcInfo.metadataOnly = true
    	}
    
    	var chStorageClass bool
    	if dstSc != "" && dstSc != srcInfo.StorageClass {
    		chStorageClass = true
    		srcInfo.metadataOnly = false
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

                 << result_batch_shape[i] << " and output batch dimension "
                 << output_shape[i];
      }
    
      // Check output shape for non-batch dimension, following documentation below.
      // https://www.tensorflow.org/api_docs/cc/class/tensorflow/ops/batch-mat-mul
      int64_t x_row_dim = x_shape[x_shape.size() - 2];
      int64_t x_col_dim = x_shape[x_shape.size() - 1];
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
Back to top