Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 229 for xlim (0.07 sec)

  1. src/cmd/compile/internal/ssa/deadstore.go

    			}
    			return
    		case OpVarDef:
    			// v should be eliminated if we eliminate the auto.
    			n, ok := v.Aux.(*ir.Name)
    			if !ok || n.Class != ir.PAUTO {
    				return
    			}
    			if elim[v] == nil {
    				elim[v] = n
    				changed = true
    			}
    			return
    		case OpVarLive:
    			// Don't delete the auto if it needs to be kept alive.
    
    			// We depend on this check to keep the autotmp stack slots
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 20:07:26 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. src/syscall/syscall_linux_riscv64.go

    	}
    	return utimensat(_AT_FDCWD, path, (*[2]Timespec)(unsafe.Pointer(&ts[0])), 0)
    }
    
    //go:nosplit
    func rawSetrlimit(resource int, rlim *Rlimit) Errno {
    	_, _, errno := RawSyscall(SYS_SETRLIMIT, uintptr(resource), uintptr(unsafe.Pointer(rlim)), 0)
    	return errno
    }
    
    func (r *PtraceRegs) PC() uint64 { return r.Pc }
    
    func (r *PtraceRegs) SetPC(pc uint64) { r.Pc = pc }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 22:23:07 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  3. src/syscall/syscall_linux_mips64x.go

    }
    
    //sys	Utime(path string, buf *Utimbuf) (err error)
    //sys	utimes(path string, times *[2]Timeval) (err error)
    
    //go:nosplit
    func rawSetrlimit(resource int, rlim *Rlimit) Errno {
    	_, _, errno := RawSyscall(SYS_SETRLIMIT, uintptr(resource), uintptr(unsafe.Pointer(rlim)), 0)
    	return errno
    }
    
    func setTimespec(sec, nsec int64) Timespec {
    	return Timespec{Sec: sec, Nsec: nsec}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 22:23:07 UTC 2023
    - 6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/telemetry/npx

    # license that can be found in the LICENSE file.
    
    docker run \
      --rm \
      --volume $(pwd):/workspace \
      --workdir /workspace \
      --env NODE_OPTIONS="--dns-result-order=ipv4first" \
      --entrypoint npx \
      node:18.16.0-slim \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 349 bytes
    - Viewed (0)
  5. pyproject.toml

        "scripts/",
        # For a test
        "docs/en/docs/img/favicon.png",
        ]
    
    [tool.tiangolo._internal-slim-build.packages.fastapi-slim.project]
    name = "fastapi-slim"
    
    [tool.tiangolo._internal-slim-build.packages.fastapi]
    include-optional-dependencies = ["standard"]
    
    [tool.tiangolo._internal-slim-build.packages.fastapi.project.optional-dependencies]
    all = [
        # # For the test client
        "httpx >=0.23.0",
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/prove.go

    			switch r {
    			case lt:
    				lim.umax = uc - 1
    			case lt | eq:
    				lim.umax = uc
    			case gt | eq:
    				lim.umin = uc
    			case gt:
    				lim.umin = uc + 1
    			case lt | gt:
    				lim = old
    				if uc == lim.umin {
    					lim.umin++
    				}
    				if uc == lim.umax {
    					lim.umax--
    				}
    			case eq:
    				lim.umin = uc
    				lim.umax = uc
    			}
    			// We could use the contrapositives of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/kuberuntime_sandbox_linux.go

    		ExcludeOverhead: true,
    	}
    	req := resourcehelper.PodRequests(pod, opts)
    	lim := resourcehelper.PodLimits(pod, opts)
    	var cpuRequest *resource.Quantity
    	if _, cpuRequestExists := req[v1.ResourceCPU]; cpuRequestExists {
    		cpuRequest = req.Cpu()
    	}
    	return m.calculateLinuxResources(cpuRequest, lim.Cpu(), lim.Memory())
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 09 23:15:53 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/telemetry/npm

    # license that can be found in the LICENSE file.
    
    docker run \
      --rm \
      --volume $(pwd):/workspace \
      --workdir /workspace \
      --env NODE_OPTIONS="--dns-result-order=ipv4first" \
      --entrypoint npm \
      node:18.16.0-slim \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 349 bytes
    - Viewed (0)
  9. hack/testdata/rollingupdate-statefulset-rv2.yaml

      replicas: 0
      template:
        metadata:
          labels:
            app: nginx-statefulset
        spec:
          terminationGracePeriodSeconds: 5
          containers:
          - name: nginx
            image: registry.k8s.io/nginx-slim:0.8
            ports:
            - containerPort: 80
              name: web
            command:
            - sh
            - -c
            - 'while true; do sleep 1; done'
          - name: pause
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 719 bytes
    - Viewed (0)
  10. .github/workflows/test-redistribute.yml

      pull_request:
        types:
          - opened
          - synchronize
    
    jobs:
      test-redistribute:
        runs-on: ubuntu-latest
        strategy:
          matrix:
            package:
              - fastapi
              - fastapi-slim
        steps:
          - name: Dump GitHub context
            env:
              GITHUB_CONTEXT: ${{ toJson(github) }}
            run: echo "$GITHUB_CONTEXT"
          - uses: actions/checkout@v4
          - name: Set up Python
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue May 07 18:31:27 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top