Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 60 for tolen (0.15 sec)

  1. src/cmd/go/internal/load/pkg.go

    // Package load loads packages.
    package load
    
    import (
    	"bytes"
    	"context"
    	"crypto/sha256"
    	"encoding/json"
    	"errors"
    	"fmt"
    	"go/build"
    	"go/scanner"
    	"go/token"
    	"internal/platform"
    	"io/fs"
    	"os"
    	pathpkg "path"
    	"path/filepath"
    	"runtime"
    	"runtime/debug"
    	"slices"
    	"sort"
    	"strconv"
    	"strings"
    	"time"
    	"unicode"
    	"unicode/utf8"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /** The key of the message: Target */
        public static final String LABELS_TARGET = "{labels.target}";
    
        /** The key of the message: Token */
        public static final String LABELS_TOKEN = "{labels.token}";
    
        /** The key of the message: Synonym File */
        public static final String LABELS_SYNONYM_FILE = "{labels.synonymFile}";
    
        /** The key of the message: Stopwords File */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 146.4K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/exec.go

    	// suspicious, emit a special token file "preferlinkext" (known to
    	// the linker) in the object file to signal the that it should not
    	// try to link internally and should revert to external linking.
    	// The token we pass is a suggestion, not a mandate; if a user is
    	// explicitly asking for a specific linkmode via the "-linkmode"
    	// flag, the token will be ignored. NB: in theory we could ditch
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  4. maven-model-builder/src/test/resources/dag.txt

    	quarkus/extensions/agroal/deployment/pom.xml
    	quarkus/extensions/jdbc/jdbc-h2/deployment/pom.xml
    	quarkus/test-framework/junit5-internal/pom.xml
    quarkus/extensions/oidc-token-propagation-reactive/deployment/pom.xml
    	quarkus/extensions/oidc-token-propagation-reactive/runtime/pom.xml
    	quarkus/extensions/security/deployment/pom.xml
    	quarkus/extensions/resteasy-reactive/rest-client-reactive/deployment/pom.xml
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 15 16:49:26 UTC 2024
    - 224K bytes
    - Viewed (0)
  5. doc/go1.17_spec.html

    is ignored except as it separates tokens
    that would otherwise combine into a single token. Also, a newline or end of file
    may trigger the insertion of a <a href="#Semicolons">semicolon</a>.
    While breaking the input into tokens,
    the next token is the longest sequence of characters that form a
    valid token.
    </p>
    
    <h3 id="Semicolons">Semicolons</h3>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  6. src/runtime/proc.go

    //
    //go:yeswritebarrierrec
    func allocm(pp *p, fn func(), id int64) *m {
    	allocmLock.rlock()
    
    	// The caller owns pp, but we may borrow (i.e., acquirep) it. We must
    	// disable preemption to ensure it is not stolen, which would make the
    	// caller lose ownership.
    	acquirem()
    
    	gp := getg()
    	if gp.m.p == 0 {
    		acquirep(pp) // temporarily borrow p for mallocs in this function
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  7. pkg/printers/internalversion/printers_test.go

    				},
    				Type: "kubernetes.io/service-account-token",
    				Data: map[string][]byte{
    					"token": []byte("secret data"),
    				},
    			},
    			// Columns: Name, Type, Data, Age
    			expected: []metav1.TableRow{{Cells: []interface{}{"secret1", "kubernetes.io/service-account-token", int64(1), "0s"}}},
    		},
    		// Basic namespace with type and age; no data.
    		{
    			secret: api.Secret{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.4.md

    * Some components like kube-dns and kube-proxy could fail to load the service account token when started within a pod. Properly handle empty configurations to try loading the service account config. ([#31947](https://github.com/kubernetes/kubernetes/pull/31947), [@smarterclayton](https://github.com/smarterclayton))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/CacheTest.kt

        assertThat(response.cacheResponse!!.request.url).isEqualTo(request.url)
      }
    
      @Test
      fun postWithOverrideResponse() {
        val url = server.url("/abc?token=123")
        val cacheUrlOverride = url.newBuilder().removeAllQueryParameters("token").build()
    
        val request =
          Request.Builder()
            .url(url)
            .method("POST", "XYZ".toRequestBody())
            .cacheUrlOverride(cacheUrlOverride)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.5.md

    ## Changelog since v1.5.5
    
    ### Other notable changes
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
Back to top