Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 214 for tagdef (0.24 sec)

  1. samples/ambient-argo/documentation/argo-reference-arch.dot

            istiod18[label="Istio 1.18.5 Control"]
            istiod19[label="Istio 1.19.3 Control"]
            ztunnelds[label="ztunnel"]
            cnids[label="cni"]
            extrads[label="prometheus, etc"]
            tagdef[label="tag default->1.18.5"]
            tagrap[label="tag rapid->1.19.3"]
            tagsta[label="tag stable->1.18.5"]
        }
    
        subgraph cluster_app {
            rankdir=TB
            node [style=filled];
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. src/encoding/asn1/common.go

    	TagInteger         = 2
    	TagBitString       = 3
    	TagOctetString     = 4
    	TagNull            = 5
    	TagOID             = 6
    	TagEnum            = 10
    	TagUTF8String      = 12
    	TagSequence        = 16
    	TagSet             = 17
    	TagNumericString   = 18
    	TagPrintableString = 19
    	TagT61String       = 20
    	TagIA5String       = 22
    	TagUTCTime         = 23
    	TagGeneralizedTime = 24
    	TagGeneralString   = 27
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 06 15:53:04 UTC 2021
    - 5.5K bytes
    - Viewed (0)
  3. internal/etag/reader.go

    	"fmt"
    	"hash"
    	"io"
    )
    
    // Tagger is the interface that wraps the basic ETag method.
    type Tagger interface {
    	ETag() ETag
    }
    
    type wrapReader struct {
    	io.Reader
    	Tagger
    }
    
    var _ Tagger = wrapReader{} // compiler check
    
    // ETag returns the ETag of the underlying Tagger.
    func (r wrapReader) ETag() ETag {
    	if r.Tagger == nil {
    		return nil
    	}
    	return r.Tagger.ETag()
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. src/go/internal/gcimporter/exportdata.go

    		return
    	}
    
    	if string(line) == "!<arch>\n" {
    		// Archive file. Scan to __.PKGDEF.
    		var name string
    		if name, size, err = readGopackHeader(r); err != nil {
    			return
    		}
    
    		// First entry should be __.PKGDEF.
    		if name != "__.PKGDEF" {
    			err = fmt.Errorf("go archive is missing __.PKGDEF")
    			return
    		}
    
    		// Read first line of __.PKGDEF data, so that line
    		// is once again the first line of the input.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 19 15:49:05 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  5. src/main/java/jcifs/spnego/NegTokenInit.java

                    }
                    ASN1TaggedObject tagged = (ASN1TaggedObject) vec.getObjectAt(1);
                    if ( tagged.getTagNo() != 0 ) {
                        throw new IOException("Malformed SPNEGO token: tag " + tagged.getTagNo() + " " + tagged);
                    }
                    ASN1Sequence sequence = ASN1Sequence.getInstance(tagged, true);
                    Enumeration<ASN1Object> fields = sequence.getObjects();
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Oct 01 12:01:17 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/ops/gen/model/arg_type.h

    //
    // This represents the type information with OpDef::ArgDef and any type-related
    // context.
    class ArgType {
     public:
      ArgType() = default;
      ArgType(const ArgType& other) = default;
      static ArgType CreateInput(const OpDef::ArgDef& arg_def);
      static ArgType CreateInputRef(const OpDef::ArgDef& arg_def);
      static ArgType CreateOutput(const OpDef::ArgDef& arg_def);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 15 18:23:40 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  7. releasenotes/notes/wasm-cache-with-tag-stripped-url.yaml

    kind: feature
    area: extensibility
    issue: []
    releaseNotes:
      - |
        **Improved** Use tag-stripped URL + checksum as a Wasm module cachekey, and the tagged URL is separately cached. 
        This may increase the chance of cache hit (e.g., trying to find the same image with both of the tagged and digest URLs.)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 23 08:37:23 UTC 2024
    - 402 bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/integTest/resources/org/gradle/api/tasks/javadoc/JavadocIntegrationTest/handlesTagsAndTaglets/src/taglet/java/CustomTaglet.java

        }
    
        public String toString(Tag tag) {
            return "<DT><B>Custom Taglet:</B></DT>\n<DD>" + tag.text() + "</DD>\n";
        }
    
        public String toString(Tag[] tags) {
            return toString(tags[0]);
        }
    
        public static void register(Map tagletMap) {
            CustomTaglet taglet = new CustomTaglet();
            tagletMap.put(taglet.getName(), taglet);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 998 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_get_upgrade_pseudo.txt

    env GO111MODULE=on
    
    # For this test module there are three versions:
    #   * v0.1.1-0.20190429073117-b5426c86b553
    #   * v0.1.0
    #   * v0.0.0-20190430073000-30950c05d534
    # Only v0.1.0 is tagged.
    #
    # The v0.1.1 pseudo-version is semantically higher than the latest tag.
    # The v0.0.0 pseudo-version is chronologically newer.
    
    # Start at v0.1.1-0.20190429073117-b5426c86b553
    go get example.com/pseudoupgrade@b5426c8
    go list -m -u all
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  10. src/runtime/heapdump.go

    		readmemstats_m(&m)
    		writeheapdump_m(fd, &m)
    	})
    
    	startTheWorld(stw)
    }
    
    const (
    	fieldKindEol       = 0
    	fieldKindPtr       = 1
    	fieldKindIface     = 2
    	fieldKindEface     = 3
    	tagEOF             = 0
    	tagObject          = 1
    	tagOtherRoot       = 2
    	tagType            = 3
    	tagGoroutine       = 4
    	tagStackFrame      = 5
    	tagParams          = 6
    	tagFinalizer       = 7
    	tagItab            = 8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 17.6K bytes
    - Viewed (0)
Back to top