Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 62 for varDesc (0.31 sec)

  1. src/main/resources/fess_indices/_cloud/fess.json

            },
            "latvian_keywords": {
              "type":       "keyword_marker",
              "keywords": ["sveiki", "pasaule", "meklēšana"]
            },
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Feb 27 09:26:16 UTC 2021
    - 117.3K bytes
    - Viewed (0)
  2. src/debug/gosym/pclntab.go

    	pctab       []byte // points to the pctables.
    	nfiletab    uint32
    	funcNames   map[uint32]string // cache the function names
    	strings     map[uint32]string // interned substrings of Data, keyed by offset
    	// fileMap varies depending on the version of the object file.
    	// For ver12, it maps the name to the index in the file table.
    	// For ver116, it maps the name to the offset in filetab.
    	fileMap map[string]uint32
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 19:43:24 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/Cache.kt

         */
        fun Response.varyHeaders(): Headers {
          // Use the request headers sent over the network, since that's what the response varies on.
          // Otherwise OkHttp-supplied headers like "Accept-Encoding: gzip" may be lost.
          val requestHeaders = networkResponse!!.request.headers
          val responseHeaders = headers
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/preemption/preemption.go

    	State      *framework.CycleState
    	Interface
    }
    
    // Preempt returns a PostFilterResult carrying suggested nominatedNodeName, along with a Status.
    // The semantics of returned <PostFilterResult, Status> varies on different scenarios:
    //
    //   - <nil, Error>. This denotes it's a transient/rare error that may be self-healed in future cycles.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/cmd/bisect/main.go

    // by the new loop variable semantics:
    //
    //	bisect go test -gcflags=all=-d=loopvarhash=PATTERN
    //
    // The -gcflags=all= instructs the go command to pass the -d=... to the Go compiler
    // when compiling all packages. Bisect varies PATTERN to determine the minimal set of changes
    // needed to reproduce the failure.
    //
    // The go command also checks the GOCOMPILEDEBUG environment variable for flags
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  6. src/net/net.go

    		}
    		go handleConnection(conn)
    	}
    
    # Name Resolution
    
    The method for resolving domain names, whether indirectly with functions like Dial
    or directly with functions like [LookupHost] and [LookupAddr], varies by operating system.
    
    On Unix systems, the resolver has two options for resolving names.
    It can use a pure Go resolver that sends DNS requests directly to the servers
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modfetch/codehost/git.go

    		release()
    
    		if err == nil {
    			return r.statLocal(ctx, rev, ref)
    		}
    		// Don't try to be smart about parsing the error.
    		// It's too complex and varies too much by git version.
    		// No matter what went wrong, fall back to a complete fetch.
    	}
    
    	// Last resort.
    	// Fetch all heads and tags and hope the hash we want is in the history.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 22:10:38 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  8. src/syscall/syscall_linux.go

    //sys	Unshare(flags int) (err error)
    //sys	write(fd int, p []byte) (n int, err error)
    //sys	exitThread(code int) (err error) = SYS_EXIT
    //sys	readlen(fd int, p *byte, np int) (n int, err error) = SYS_READ
    
    // mmap varies by architecture; see syscall_linux_*.go.
    //sys	munmap(addr uintptr, length uintptr) (err error)
    
    var mapper = &mmapper{
    	active: make(map[*byte][]byte),
    	mmap:   mmap,
    	munmap: munmap,
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_controller.go

    // this type and cfgMeal follow the convention that the suffix
    // "Locked" means that the caller must hold the configController lock.
    type configController struct {
    	name              string // varies in tests of fighting controllers
    	clock             clock.PassiveClock
    	queueSetFactory   fq.QueueSetFactory
    	reqsGaugeVec      metrics.RatioedGaugeVec
    	execSeatsGaugeVec metrics.RatioedGaugeVec
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 48.8K bytes
    - Viewed (0)
  10. src/time/time.go

    // clock reading if present. If t != u because of different monotonic clock readings,
    // that difference will be visible when printing t.String() and u.String().
    //
    // # Timer Resolution
    //
    // [Timer] resolution varies depending on the Go runtime, the operating system
    // and the underlying hardware.
    // On Unix, the resolution is ~1ms.
    // On Windows version 1803 and newer, the resolution is ~0.5ms.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
Back to top