Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/cmd/go/alldocs.go

    //	go doc [<pkg>.]<sym>[.<methodOrField>]
    //	go doc [<pkg>.][<sym>.]<methodOrField>
    //
    // The first item in this list matched by the argument is the one whose documentation
    // is printed. (See the examples below.) However, if the argument starts with a capital
    // letter it is assumed to identify a symbol or method in the current directory.
    //
    // For packages, the order of scanning is determined lexically in breadth-first order.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

        // Reference: https://arxiv.org/pdf/1603.07285.pdf
        // Section 4.6 > Relationship 13 states an associated transposed
        // convolution should have `s = 1`.
        // For `VALID` padding, the condition below will always hold true.
        // For `SAME` padding, express via regular convolution.
        return output_height > input_height && output_width > input_width &&
               stride_height == 1 && stride_width == 1;
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  3. src/cmd/go/internal/load/pkg.go

    	Stale       bool   `json:",omitempty"` // would 'go install' do anything for this package?
    	StaleReason string `json:",omitempty"` // why is Stale true?
    
    	// Source files
    	// If you add to this list you MUST add to p.AllFiles (below) too.
    	// Otherwise file name security lists will not apply to any new additions.
    	GoFiles           []string `json:",omitempty"` // .go source files (excluding CgoFiles, TestGoFiles, XTestGoFiles)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. doc/go1.17_spec.html

    	<!-- ul below only for regular layout -->
    	<ul> </ul>
    </li>
    
    <li>
    	A call to the built-in function
    	<a href="#Handling_panics"><code>panic</code></a>.
    	<!-- ul below only for regular layout -->
    	<ul> </ul>
    </li>
    
    <li>
    	A <a href="#Blocks">block</a> in which the statement list ends in a terminating statement.
    	<!-- ul below only for regular layout -->
    	<ul> </ul>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top