Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 384 for minipay (0.09 sec)

  1. staging/src/k8s.io/apiserver/pkg/authorization/authorizerfactory/delegating.go

    	"k8s.io/apiserver/pkg/authorization/authorizer"
    	"k8s.io/apiserver/plugin/pkg/authorizer/webhook"
    	authorizationclient "k8s.io/client-go/kubernetes/typed/authorization/v1"
    )
    
    // DelegatingAuthorizerConfig is the minimal configuration needed to create an authorizer
    // built to delegate authorization to a kube API server
    type DelegatingAuthorizerConfig struct {
    	SubjectAccessReviewClient authorizationclient.AuthorizationV1Interface
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 22:41:27 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. operator/cmd/mesh/manifest-generate_test.go

    	assert.NoError(t, err)
    
    	// Install a default revision should not cause any error
    	minimal := "minimal"
    	_, err = fakeControllerReconcile(minimal, tmpCharts, &helmreconciler.Options{Force: false, SkipPrune: true})
    	assert.NoError(t, err)
    }
    
    func TestManifestGenerateIstiodRemote(t *testing.T) {
    	g := NewWithT(t)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  3. build-logic/uber-plugins/src/main/kotlin/gradlebuild.java-library.gradle.kts

     * limitations under the License.
     */
    
    plugins {
        `java-library`
        id("gradlebuild.dependency-modules")
        id("gradlebuild.repositories")
        id("gradlebuild.minify")
        id("gradlebuild.reproducible-archives")
        id("gradlebuild.unittest-and-compile")
        id("gradlebuild.test-fixtures")
        id("gradlebuild.distribution-testing")
        id("gradlebuild.incubation-report")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 17:16:23 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/typeparams/coretype.go

    // if it is a single union containing no interface terms, and is minimal in the
    // sense that removing any term changes the set of types satisfying the
    // constraint. It is left as a proof for the reader that, modulo sorting, there
    // is exactly one such normalized form.
    //
    // Because the minimal representation always takes this form, NormalTerms
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  5. src/math/log1p_s390x.s

    GLOBL ·log1pxl1<> + 0(SB), RODATA, $8
    DATA ·log1pxa<> + 0(SB)/8, $5.5
    GLOBL ·log1pxa<> + 0(SB), RODATA, $8
    DATA ·log1pxmone<> + 0(SB)/8, $-1.0
    GLOBL ·log1pxmone<> + 0(SB), RODATA, $8
    
    // Minimax polynomial approximations
    DATA ·log1pc8<> + 0(SB)/8, $0.212881813645679599E-07
    GLOBL ·log1pc8<> + 0(SB), RODATA, $8
    DATA ·log1pc7<> + 0(SB)/8, $-.148682720127920854E-06
    GLOBL ·log1pc7<> + 0(SB), RODATA, $8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 15:34:41 UTC 2019
    - 5.1K bytes
    - Viewed (0)
  6. src/math/expm1_s390x.s

    // Copyright 2017 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    #include "textflag.h"
    
    // Minimax polynomial approximation and other constants
    DATA ·expm1rodataL22<> + 0(SB)/8, $-1.0
    DATA ·expm1rodataL22<> + 8(SB)/8, $800.0E+00
    DATA ·expm1rodataL22<> + 16(SB)/8, $1.0
    DATA ·expm1rodataL22<> + 24(SB)/8, $-.231904681384629956E-16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 15:34:41 UTC 2019
    - 5.3K bytes
    - Viewed (0)
  7. src/cmd/go/internal/mvs/mvs.go

    // license that can be found in the LICENSE file.
    
    // Package mvs implements Minimal Version Selection.
    // See https://research.swtch.com/vgo-mvs.
    package mvs
    
    import (
    	"fmt"
    	"slices"
    	"sort"
    	"sync"
    
    	"cmd/go/internal/par"
    
    	"golang.org/x/mod/module"
    )
    
    // A Reqs is the requirement graph on which Minimal Version Selection (MVS) operates.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 21:58:12 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  8. src/runtime/netpoll_kqueue_pipe.go

    // until NetBSD 10.0, check out https://www.netbsd.org/releases/formal-10/NetBSD-10.0.html
    // Therefore we use the pipe to wake up the kevent on NetBSD at this point. Get back here
    // and switch to EVFILT_USER when we bump up the minimal requirement of NetBSD to 10.0.
    // Alternatively, maybe we can use EVFILT_USER on the NetBSD by checking the kernel version
    // via uname(3) and fall back to the pipe if the kernel version is older than 10.0.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. src/internal/goarch/goarch.go

    // DefaultPhysPageSize is the default physical page size.
    const DefaultPhysPageSize = _DefaultPhysPageSize
    
    // PCQuantum is the minimal unit for a program counter (1 on x86, 4 on most other systems).
    // The various PC tables record PC deltas pre-divided by PCQuantum.
    const PCQuantum = _PCQuantum
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 17 19:48:21 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/aot/benchmark.h

    // be used to test a model on android. See also code generation rules in
    // tfcompile.bzl.
    //
    // This is separate from the built-in micro-benchmarks, because we want to:
    // 1. show a binary with minimal dependencies, to show a close-to-lower-bound
    //    binary size.
    // 2. compile on Android.
    #ifndef TENSORFLOW_COMPILER_AOT_BENCHMARK_H_
    #define TENSORFLOW_COMPILER_AOT_BENCHMARK_H_
    
    #include <functional>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 11 01:20:50 UTC 2021
    - 2.5K bytes
    - Viewed (0)
Back to top