Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 713 for wbMove (0.61 sec)

  1. src/cmd/go/testdata/script/build_cache_pgo.txt

    # using a profile from cache.
    #
    # Note we can't directly look for $GOCACHE in the regex below because the
    # Windows slashes would need to be escaped. Instead just look for the "gocache"
    # component (specified above) as an approximation.
    go build -x -pgo=default.pgo lib2.go
    ! stderr 'preprofile.*default\.pgo'
    stderr 'compile.*-pgoprofile=\S+gocache.*lib2.go'
    
    -- lib.go --
    package lib
    -- lib2.go --
    package lib2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 18:28:25 UTC 2024
    - 927 bytes
    - Viewed (0)
  2. pkg/kubelet/eviction/eviction_manager_test.go

    		pod     podToMake
    		volumes []v1.Volume
    	}{
    		"eviction due to rootfs above limit": {
    			pod: podToMake{name: "rootfs-above-limits", priority: defaultPriority, requests: newResourceList("", "", "1Gi"), limits: newResourceList("", "", "1Gi"), rootFsUsed: "2Gi"},
    		},
    		"eviction due to logsfs above limit": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  3. pilot/docker/Dockerfile.ztunnel

    # The following section is used as base image if BASE_DISTRIBUTION=distroless
    FROM ${ISTIO_BASE_REGISTRY}/iptables:${BASE_VERSION} as distroless
    
    # This will build the final image based on either debug or distroless from above
    # hadolint ignore=DL3006
    FROM ${BASE_DISTRIBUTION:-debug}
    
    WORKDIR /
    
    ARG istio_version
    
    # Install ztunnel.
    ARG TARGETARCH
    COPY ${TARGETARCH:-amd64}/ztunnel /usr/local/bin/ztunnel
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 00:17:51 UTC 2024
    - 944 bytes
    - Viewed (0)
  4. src/os/signal/doc.go

    signal handler if any.
    
    Go code built without -buildmode=c-archive or -buildmode=c-shared will
    install a signal handler for the asynchronous signals listed above,
    and save any existing signal handler. If a signal is delivered to a
    non-Go thread, it will act as described above, except that if there is
    an existing non-Go signal handler, that handler will be installed
    before raising the signal.
    
    # Windows
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:11:00 UTC 2024
    - 11K bytes
    - Viewed (0)
  5. apache-maven/src/main/appended-resources/licenses/MIT.txt

     distribute,  sublicense, and/or sell  copies of  the Software,  and to
     permit persons to whom the Software  is furnished to do so, subject to
     the following conditions:
    
     The  above  copyright  notice  and  this permission  notice  shall  be
     included in all copies or substantial portions of the Software.
    
     THE  SOFTWARE IS  PROVIDED  "AS  IS", WITHOUT  WARRANTY  OF ANY  KIND,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  6. src/os/pidfd_linux.go

    		if e != syscall.EINTR {
    			break
    		}
    	}
    	if e != 0 {
    		return nil, NewSyscallError("waitid", e)
    	}
    	// Release the Process' handle reference, in addition to the reference
    	// we took above.
    	p.handlePersistentRelease(statusDone)
    	return &ProcessState{
    		pid:    int(info.Pid),
    		status: info.WaitStatus(),
    		rusage: &rusage,
    	}, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 18:08:44 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. LICENSES/vendor/github.com/go-task/slim-sprig/v3/LICENSE

    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    copies of the Software, and to permit persons to whom the Software is
    furnished to do so, subject to the following conditions:
    
    The above copyright notice and this permission notice shall be included in
    all copies or substantial portions of the Software.
    
    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 13:25:50 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. release/downloadIstioCtl.sh

      filename="istioctl-${ISTIO_VERSION}-${OSEXT}.tar.gz"
      curl -fsL -o "${tmp}/${filename}" "$URL"
      tar -xzf "${tmp}/${filename}" -C "${tmp}"
    }
    
    # Istio 1.6 and above support arch
    # Istio 1.5 and below do not have arch support
    ARCH_SUPPORTED="1.6"
    # Istio 1.10 and above support arch for osx arm64
    ARCH_SUPPORTED_OSX="1.10"
    
    if [ "${OS}" = "Linux" ] ; then
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 11 14:11:30 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. docs/en/docs/advanced/dataclasses.md

    So, even with the code above that doesn't use Pydantic explicitly, FastAPI is using Pydantic to convert those standard dataclasses to Pydantic's own flavor of dataclasses.
    
    And of course, it supports the same:
    
    * data validation
    * data serialization
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. licenses/github.com/alecthomas/participle/v2/COPYING

    use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
    of the Software, and to permit persons to whom the Software is furnished to do
    so, subject to the following conditions:
    
    The above copyright notice and this permission notice shall be included in all
    copies or substantial portions of the Software.
    
    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 17:05:56 UTC 2024
    - 1K bytes
    - Viewed (0)
Back to top