Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 25 for livez (0.11 sec)

  1. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    // license that can be found in the LICENSE file.
    
    package main
    
    import "strings"
    
    // Notes:
    //  - Integer types live in the low portion of registers. Upper portions are junk.
    //  - Boolean types use the low-order byte of a register. 0=false, 1=true.
    //    Upper bytes are junk.
    //  - Floating-point types live in the low natural slot of an sse2 register.
    //    Unused portions are junk.
    //  - We do not use AH,BH,CH,DH registers.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  2. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    			}
    			milestones = nil
    			registry.Decorator = tc.decorator
    			ttlFailDone = false
    			registry.TTLFunc = tc.ttl
    			// force storage to use a cached object with a non-matching resourceVersion to guarantee a live lookup + retry
    			created.(*example.Pod).ResourceVersion += "0"
    			registry.Storage.Storage = &staleGuaranteedUpdateStorage{Interface: registry.Storage.Storage, cachedObj: created}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  3. src/reflect/all_test.go

    	f2("four", "five5", "six666", "seven77", "eight888")
    }
    
    // Issue 18635 (function version).
    func TestKeepFuncLive(t *testing.T) {
    	// Test that we keep makeFuncImpl live as long as it is
    	// referenced on the stack.
    	typ := TypeOf(func(i int) {})
    	var f, g func(in []Value) []Value
    	f = func(in []Value) []Value {
    		clobber()
    		i := int(in[0].Int())
    		if i > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

               /*default=*/"false",
               "Enables certain TPUExecute ops to run in parallel if they only "
               "operate on resources that live on composite devices.">
      ];
    }
    
    def ExecutorUpdateControlDependenciesPass : Pass<"tf-executor-update-control-dependencies", "ModuleOp"> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  5. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    lincoln
    
    // linde : 2014-12-04 Linde Aktiengesellschaft
    linde
    
    // link : 2013-11-14 Nova Registry Ltd
    link
    
    // lipsy : 2015-06-25 Lipsy Ltd
    lipsy
    
    // live : 2014-12-04 Dog Beach, LLC
    live
    
    // living : 2015-07-30 Lifestyle Domain Holdings, Inc.
    living
    
    // llc : 2017-12-14 Identity Digital Limited
    llc
    
    // llp : 2019-08-26 Intercap Registry Inc.
    llp
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          "type": "object"
        },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch_test.go

    	// Original is the original object (last-applied config in annotation)
    	Original map[string]interface{}
    	// Modified is the modified object (new config we want)
    	Modified map[string]interface{}
    	// Current is the current object (live config in the server)
    	Current map[string]interface{}
    	// TwoWay is the expected two-way merge patch diff between original and modified
    	TwoWay map[string]interface{}
    	// ThreeWay is the expected three-way merge patch
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 16:45:45 UTC 2023
    - 130.4K bytes
    - Viewed (0)
  8. cmd/object-handlers.go

    		return
    	}
    	ctx = lkctx.Context()
    	defer lock.RUnlock(lkctx)
    
    	getObjectNInfo := objectAPI.GetObjectNInfo
    
    	gopts := opts
    	gopts.NoLock = true // We already have a lock, we can live with it.
    	objInfo, err := getObjectInfo(ctx, bucket, object, gopts)
    	if err != nil {
    		// Versioning enabled quite possibly object is deleted might be delete-marker
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  9. src/net/http/server.go

    // program doesn't exit and waits instead for Shutdown to return.
    //
    // Shutdown does not attempt to close nor wait for hijacked
    // connections such as WebSockets. The caller of Shutdown should
    // separately notify such long-lived connections of shutdown and wait
    // for them to close, if desired. See [Server.RegisterOnShutdown] for a way to
    // register shutdown notification functions.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  10. src/cmd/go/internal/load/pkg.go

    var packageCache = map[string]*Package{}
    
    // dirToImportPath returns the pseudo-import path we use for a package
    // outside the Go path. It begins with _/ and then contains the full path
    // to the directory. If the package lives in c:\home\gopher\my\pkg then
    // the pseudo-import path is _/c_/home/gopher/my/pkg.
    // Using a pseudo-import path like this makes the ./ imports no longer
    // a special case, so that all the code to deal with ordinary imports works
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
Back to top