Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,363 for inter (0.2 sec)

  1. cmd/jwt.go

    	"github.com/minio/minio/internal/logger"
    	"github.com/minio/pkg/v3/policy"
    )
    
    const (
    	jwtAlgorithm = "Bearer"
    
    	// Default JWT token for web handlers is one day.
    	defaultJWTExpiry = 24 * time.Hour
    
    	// Inter-node JWT token expiry is 15 minutes.
    	defaultInterNodeJWTExpiry = 15 * time.Minute
    )
    
    var (
    	errInvalidAccessKeyID = errors.New("The access key ID you provided does not exist in our records")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingRequest.java

        /**
         * Indicates whether the model building should happen in two phases. If enabled, the initial invocation of the model
         * builder will only produce an interim result which may be used to analyze inter-model dependencies before the
         * final invocation of the model builder is performed.
         *
         * @return {@code true} if two-phase building is enabled, {@code false} if the model should be build in a single
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/internal/passes/clustering_passes.td

      let summary = "Moves a broadcast from host into XLA, encoded as XlaAllReduce";
    
      let description = [{
        This pass moves brodcasts from host TF ops into XLA. This enables use of
        the inter-device network, which is faster than the inter-host network.
        Broadcasts in XLA are encoded as XlaAllReduce. An all_reduce with all 0
        inputs except for one real input produces the same result as a broadcast.
    
        For example, the following:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 02:01:13 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  4. src/cmd/go/internal/lockedfile/lockedfile_test.go

    // Copyright 2018 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.
    
    // js and wasip1 do not support inter-process file locking.
    //
    //go:build !js && !wasip1
    
    package lockedfile_test
    
    import (
    	"fmt"
    	"internal/testenv"
    	"os"
    	"path/filepath"
    	"testing"
    	"time"
    
    	"cmd/go/internal/lockedfile"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:29 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  5. src/internal/reflectlite/all_test.go

    	etyp := typ.Elem()
    	testType(t, 4, etyp, "struct { c chan *int32; d float32 }")
    }
    
    func TestInterfaceValue(t *testing.T) {
    	var inter struct {
    		E any
    	}
    	inter.E = 123.456
    	v1 := ValueOf(&inter)
    	v2 := Field(v1.Elem(), 0)
    	// assert(t, TypeString(v2.Type()), "interface {}")
    	v3 := v2.Elem()
    	assert(t, TypeString(v3.Type()), "float64")
    
    	i3 := ToInterface(v2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 19:26:08 UTC 2023
    - 24.2K bytes
    - Viewed (0)
  6. src/runtime/race/testdata/mop_test.go

    func TestRaceInterCall(t *testing.T) {
    	c := make(chan bool, 1)
    	p := InterImpl{}
    	var x Inter = p
    	go func() {
    		p2 := InterImpl{}
    		x = p2
    		c <- true
    	}()
    	x.Foo(0)
    	<-c
    }
    
    func TestRaceInterCall2(t *testing.T) {
    	c := make(chan bool, 1)
    	p := InterImpl{}
    	var x Inter = p
    	z := 0
    	go func() {
    		z = 42
    		c <- true
    	}()
    	x.Foo(z)
    	<-c
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 23 16:46:25 UTC 2023
    - 28.9K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/nodeaffinity/node_affinity_test.go

    												Key:      "GPU",
    												Operator: v1.NodeSelectorOpExists,
    											}, {
    												Key:      "GPU",
    												Operator: v1.NodeSelectorOpNotIn,
    												Values:   []string{"AMD", "INTER"},
    											},
    										},
    									},
    								},
    							},
    						},
    					},
    				},
    			},
    			labels: map[string]string{
    				"GPU": "NVIDIA-GRID-K1",
    			},
    			runPreFilter: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 12:00:10 UTC 2023
    - 38.7K bytes
    - Viewed (0)
  8. pkg/scheduler/apis/config/types_pluginargs.go

    	HardPodAffinityWeight int32
    
    	// IgnorePreferredTermsOfExistingPods configures the scheduler to ignore existing pods' preferred affinity
    	// rules when scoring candidate nodes, unless the incoming pod has inter-pod affinities.
    	IgnorePreferredTermsOfExistingPods bool
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // NodeResourcesFitArgs holds arguments used to configure the NodeResourcesFit plugin.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 13 23:15:53 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tfrt/runtime_fallback/runtime_fallback_executor.cc

        : intra_op_(std::make_unique<IntraOpThreadPool>(num_threads)) {
      // Create a HostContext for running TFRT functions. Concurrent work queue acts
      // similar to the Tensorflow `inter-op` thread pool, so we'll match the size.
      host_context_ = num_threads ? CreateMultiThreadedHostContext(num_threads)
                                  : CreateSingleThreadedHostContext();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 00:18:59 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/metrics/metrics.go

    		&metrics.HistogramOpts{
    			Namespace:      namespace,
    			Subsystem:      subsystem,
    			Name:           "dek_cache_inter_arrival_time_seconds",
    			Help:           "Time (in seconds) of inter arrival of transformation requests.",
    			StabilityLevel: metrics.ALPHA,
    			Buckets:        metrics.ExponentialBuckets(60, 2, 10),
    		},
    		[]string{"transformation_type"},
    	)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 09 22:31:32 UTC 2023
    - 12K bytes
    - Viewed (0)
Back to top