Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 583 for representing (0.45 sec)

  1. security/pkg/pki/error/error.go

    }
    
    // ErrorType returns a short string representing the error type.
    func (e Error) ErrorType() string {
    	switch e.t {
    	case CANotReady:
    		return "CA_NOT_READY"
    	case CSRError:
    		return "CSR_ERROR"
    	case TTLError:
    		return "TTL_ERROR"
    	case CertGenError:
    		return "CERT_GEN_ERROR"
    	}
    	return "UNKNOWN"
    }
    
    // HTTPErrorCode returns an HTTP error code representing the error type.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 13 17:41:21 UTC 2020
    - 2.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/mono.go

    // types. Edges are used to represent how types depend on each other:
    //
    // * Everywhere a type-parameterized function or type is instantiated,
    //   we add edges to each type parameter from the vertices (if any)
    //   representing each type parameter or defined type referenced by
    //   the type argument. If the type argument is just the referenced
    //   type itself, then the edge has weight 0, otherwise 1.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 28 00:05:29 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/SmbFileOutputStream.java

     * on an SMB server addressed by the URL parameter. See {@link
     * jcifs.smb1.smb1.SmbFile} for a detailed description and examples of
     * the smb URL syntax.
     *
     * @param url An smb URL string representing the file to write to
     */
    
        public SmbFileOutputStream( String url ) throws SmbException, MalformedURLException, UnknownHostException {
            this( url, false );
        }
    
    /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 9.2K bytes
    - Viewed (0)
  4. src/runtime/traceevent.go

    // It then returns a traceArg representing that stack which may be
    // passed to write.
    func (tl traceLocker) stack(skip int) traceArg {
    	return traceArg(traceStack(skip, nil, tl.gen))
    }
    
    // startPC takes a start PC for a goroutine and produces a unique
    // stack ID for it.
    //
    // It then returns a traceArg representing that stack which may be
    // passed to write.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/problems/ProblemEvent.java

     */
    package org.gradle.tooling.events.problems;
    
    import org.gradle.api.Incubating;
    import org.gradle.api.NonNullApi;
    import org.gradle.tooling.events.ProgressEvent;
    
    /**
     *
     * An event representing a problem.
     *
     * @since 8.4
     */
    @NonNullApi
    @Incubating
    public interface ProblemEvent extends ProgressEvent {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 13 13:30:36 UTC 2024
    - 923 bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/cc/calibration/min_max_value.h

    #define TENSORFLOW_COMPILER_MLIR_QUANTIZATION_STABLEHLO_CC_CALIBRATION_MIN_MAX_VALUE_H_
    
    #include <utility>
    
    namespace stablehlo::quantization {
    
    // Represents the (min, max) value pair, representing the range of values after
    // calibrating for quantization.
    using MinMaxValue = std::pair<float, float>;
    
    }  // namespace stablehlo::quantization
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 06 16:32:37 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  7. src/reflect/arena.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build goexperiment.arenas
    
    package reflect
    
    import "arena"
    
    // ArenaNew returns a [Value] representing a pointer to a new zero value for the
    // specified type, allocating storage for it in the provided arena. That is,
    // the returned Value's Type is [PointerTo](typ).
    func ArenaNew(a *arena.Arena, typ Type) Value {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:20:05 UTC 2024
    - 574 bytes
    - Viewed (0)
  8. platforms/software/platform-base/src/main/java/org/gradle/language/base/artifact/package-info.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * Classes representing artifacts relevant to languages in general.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 736 bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/main/java/org/gradle/language/java/artifact/package-info.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * Classes representing artifacts relevant to the Java language.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 733 bytes
    - Viewed (0)
  10. guava/src/com/google/common/graph/package-info.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * An API for representing graph (node and edge) data. It is analogous to the Java Collections
     * Framework APIs for lists, maps, sets, etc.
     *
     * <p>This package is a part of the open-source <a href="https://github.com/google/guava">Guava</a>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 30 22:32:46 UTC 2017
    - 1K bytes
    - Viewed (0)
Back to top