Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for alocale (0.15 sec)

  1. pkg/kubelet/cm/memorymanager/policy_static_test.go

    			for i := range testCase.pod.Spec.InitContainers {
    				err = p.Allocate(s, testCase.pod, &testCase.pod.Spec.InitContainers[i])
    				if !reflect.DeepEqual(err, testCase.expectedError) {
    					t.Fatalf("The actual error %v is different from the expected one %v", err, testCase.expectedError)
    				}
    			}
    
    			for i := range testCase.pod.Spec.Containers {
    				err = p.Allocate(s, testCase.pod, &testCase.pod.Spec.Containers[i])
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 05:49:15 UTC 2023
    - 100.4K bytes
    - Viewed (0)
  2. src/runtime/proc.go

    			// helpers on arm < 7. See
    			// internal/runtime/atomic/sys_linux_arm.s.
    			cpuprof.lostAtomic++
    			return
    		}
    	}
    
    	// Profiling runs concurrently with GC, so it must not allocate.
    	// Set a trap in case the code does allocate.
    	// Note that on windows, one thread takes profiles of all the
    	// other threads, so mp is usually not getg().m.
    	// In fact mp may not even be stopped.
    	// See golang.org/issue/17165.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/CacheTest.kt

          .isEqualTo(lastModifiedDate)
      }
    
      @Test
      fun maxAgeInThePastWithDateHeaderButNoLastModifiedHeader() {
        // Chrome interprets max-age relative to the local clock. Both our cache
        // and Firefox both use the earlier of the local and server's clock.
        assertNotCached(
          MockResponse.Builder()
            .addHeader("Date: " + formatDate(-120, TimeUnit.SECONDS))
            .addHeader("Cache-Control: max-age=60")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

    import java.security.KeyStore
    import java.security.cert.CertificateException
    import java.security.cert.X509Certificate
    import java.time.Duration
    import java.util.Arrays
    import java.util.EnumSet
    import java.util.Locale
    import java.util.concurrent.TimeUnit
    import java.util.concurrent.atomic.AtomicReference
    import java.util.zip.GZIPInputStream
    import javax.net.SocketFactory
    import javax.net.ssl.SSLException
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
  5. cluster/gce/gci/configure-helper.sh

          continue
    
    '
    
      local -r host_ip=$(python3 -c "${resolve_host_script_py}"$'\n'"resolve(\"${host_name}\")")
      local etcd_cluster=""
      local cluster_state="new"
      local etcd_protocol="http"
      local etcd_apiserver_protocol="http"
      local etcd_creds=""
      local etcd_apiserver_creds="${ETCD_APISERVER_CREDS:-}"
      local etcd_extra_args="${ETCD_EXTRA_ARGS:-}"
      local suffix="$1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

            },
            "stdin": {
              "description": "Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false.",
              "type": "boolean"
            },
            "stdinOnce": {
    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. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    }
    
    type BIND_OPTS3 struct {
    	CbStruct          uint32
    	Flags             uint32
    	Mode              uint32
    	TickCountDeadline uint32
    	TrackFlags        uint32
    	ClassContext      uint32
    	Locale            uint32
    	ServerInfo        *COSERVERINFO
    	Hwnd              HWND
    }
    
    const (
    	CLSCTX_INPROC_SERVER          = 0x1
    	CLSCTX_INPROC_HANDLER         = 0x2
    	CLSCTX_LOCAL_SERVER           = 0x4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  8. src/reflect/value.go

    	}
    	nout := t.NumOut()
    
    	// Register argument space.
    	var regArgs abi.RegArgs
    
    	// Compute frame type.
    	frametype, framePool, abid := funcLayout(t, rcvrtype)
    
    	// Allocate a chunk of memory for frame if needed.
    	var stackArgs unsafe.Pointer
    	if frametype.Size() != 0 {
    		if nout == 0 {
    			stackArgs = framePool.Get().(unsafe.Pointer)
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/data.go

    }
    
    // allocateDataSections allocates sym.Section objects for data/rodata
    // (and related) symbols, and then assigns symbols to those sections.
    func (state *dodataState) allocateDataSections(ctxt *Link) {
    	// Allocate sections.
    	// Data is processed before segtext, because we need
    	// to see all symbols in the .data and .bss sections in order
    	// to generate garbage collection information.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  10. src/reflect/all_test.go

    		iter := v.MapRange()
    		for iter.Next() {
    			k.SetIterKey(iter)
    			e.SetIterValue(iter)
    		}
    	}))
    	// Calling MapRange should not allocate even though it returns a *MapIter.
    	// The function is inlineable, so if the local usage does not escape
    	// the *MapIter, it can remain stack allocated.
    	want := 0
    	if got != want {
    		t.Errorf("wanted %d alloc, got %d", want, got)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
Back to top