Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 726 for Decisions (0.14 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/matchconditions/interface.go

    	FailedConditionName string
    }
    
    // Matcher contains logic for converting Evaluations to bool of matches or does not match
    type Matcher interface {
    	// Match is used to take cel evaluations and convert into decisions
    	Match(ctx context.Context, versionedAttr *admission.VersionedAttributes, versionedParams runtime.Object, authz authorizer.Authorizer) MatchResult
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 28 19:30:04 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/library_vs_application.adoc

    Always keep in mind that the solution you choose to fix a problem can "leak" to your consumers.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/authorization/metrics/metrics_test.go

    			t.Fatal(err)
    		}
    		authorizationDecisionsTotal.Reset()
    	}
    
    }
    
    type dummyAuthorizer struct {
    	decision authorizer.Decision
    	err      error
    }
    
    func (d *dummyAuthorizer) Authorize(ctx context.Context, attrs authorizer.Attributes) (authorizer.Decision, string, error) {
    	return d.decision, "", d.err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 13:20:59 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. pkg/test/json.go

    // limitations under the License.
    
    package test
    
    import (
    	"bytes"
    	"encoding/json"
    )
    
    // JSONEquals compares two json strings. We cannot compare JSON strings from protobuf because of
    // design decisions https://github.com/golang/protobuf/issues/1373 Instead, use this function to
    // normalize the formatting
    func JSONEquals(t Failer, a, b string) {
    	t.Helper()
    	ba := bytes.Buffer{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 19 21:53:59 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugins.go

    */
    
    package admission
    
    import (
    	"bytes"
    	"fmt"
    	"io"
    	"reflect"
    	"sort"
    	"strings"
    	"sync"
    
    	"k8s.io/klog/v2"
    )
    
    // Factory is a function that returns an Interface for admission decisions.
    // The config parameter provides an io.Reader handler to the factory in
    // order to load specific configurations. If no configuration is provided
    // the parameter is nil.
    type Factory func(config io.Reader) (Interface, error)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 15:48:39 UTC 2023
    - 6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/authorization/metrics/metrics.go

    			Namespace:      namespace,
    			Subsystem:      subsystem,
    			Name:           "decisions_total",
    			Help:           "Total number of terminal decisions made by an authorizer split by authorizer type, name, and decision.",
    			StabilityLevel: metrics.ALPHA,
    		},
    		[]string{"type", "name", "decision"},
    	)
    )
    
    var registerMetrics sync.Once
    
    func RegisterMetrics() {
    	registerMetrics.Do(func() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 13:20:59 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  7. src/cmd/link/main.go

    // architecture package is called. The only job done in Init is
    // configuration of the architecture-specific variables.
    //
    // Then control flow passes to ld.Main, which parses flags, makes
    // some configuration decisions, and then gives the architecture
    // packages a second chance to modify the linker's configuration
    // via the ld.Arch.Archinit function.
    
    func main() {
    	var arch *sys.Arch
    	var theArch ld.Arch
    
    	buildcfg.Check()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 17 17:54:33 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/volumebinding/fake_binder.go

    	FindReasons ConflictReasons
    	FindErr     error
    	AssumeErr   error
    	BindErr     error
    }
    
    // NewFakeVolumeBinder sets up all the caches needed for the scheduler to make
    // topology-aware volume binding decisions.
    func NewFakeVolumeBinder(config *FakeVolumeBinderConfig) *FakeVolumeBinder {
    	return &FakeVolumeBinder{
    		config: config,
    	}
    }
    
    // FakeVolumeBinder represents a fake volume binder for testing.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 21 03:28:12 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/AsyncDns.kt

        fun onFailure(
          hostname: String,
          e: IOException,
        )
      }
    
      /**
       * Class of DNS addresses, such that clients that treat these differently, such
       * as attempting IPv6 first, can make such decisions.
       */
      @ExperimentalOkHttpApi
      enum class DnsClass(val type: Int) {
        IPV4(TYPE_A),
        IPV6(TYPE_AAAA),
      }
    
      @ExperimentalOkHttpApi
      companion object {
        const val TYPE_A = 1
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 23 14:31:42 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/jit_compilation_pass_registration.cc

    // ReportClusteringInfoPass pass needs to run after all of the auto-clustering
    // passes have run but before encapsulation has run.  This way it can easily
    // compute a summary of the clustering decisions we made and broadcast it via
    // xla_activity_listener.
    REGISTER_OPTIMIZATION(OptimizationPassRegistry::POST_REWRITE_FOR_EXEC, 40,
                          ReportClusteringInfoPass);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 11 21:53:08 UTC 2023
    - 3.8K bytes
    - Viewed (0)
Back to top