Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 793 for inter (0.5 sec)

  1. src/crypto/x509/verify_test.go

    				"CN=leaf -> CN=inter b -> CN=inter a -> CN=inter c -> CN=root",
    				"CN=leaf -> CN=inter b -> CN=inter a -> CN=root",
    				"CN=leaf -> CN=inter b -> CN=inter c -> CN=inter a -> CN=root",
    				"CN=leaf -> CN=inter b -> CN=inter c -> CN=root",
    			},
    		},
    		{
    			// Build a simple two node graph, where the leaf is directly issued from
    			// the root and both certificates have matching subject and public key, but
    			// the leaf has SANs.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  2. src/runtime/iface.go

    //
    //go:linkname getitab
    func getitab(inter *interfacetype, typ *_type, canfail bool) *itab {
    	if len(inter.Methods) == 0 {
    		throw("internal error - misuse of itab")
    	}
    
    	// easy case
    	if typ.TFlag&abi.TFlagUncommon == 0 {
    		if canfail {
    			return nil
    		}
    		name := toRType(&inter.Type).nameOff(inter.Methods[0].Name)
    		panic(&TypeAssertionError{nil, typ, &inter.Type, name.Name()})
    	}
    
    	var m *itab
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  3. src/internal/abi/iface.go

    // is implementing (Inter), and some ancillary information.
    //
    // allocated in non-garbage-collected memory
    type ITab struct {
    	Inter *InterfaceType
    	Type  *Type
    	Hash  uint32     // copy of Type.Hash. Used for type switches.
    	Fun   [1]uintptr // variable sized. fun[0]==0 means Type does not implement Inter.
    }
    
    // EmptyInterface describes the layout of a "interface{}" or a "any."
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:09:59 UTC 2024
    - 895 bytes
    - Viewed (0)
  4. src/runtime/error.go

    func (e *TypeAssertionError) Error() string {
    	inter := "interface"
    	if e._interface != nil {
    		inter = toRType(e._interface).string()
    	}
    	as := toRType(e.asserted).string()
    	if e.concrete == nil {
    		return "interface conversion: " + inter + " is nil, not " + as
    	}
    	cs := toRType(e.concrete).string()
    	if e.missingMethod == "" {
    		msg := "interface conversion: " + inter + " is " + cs + ", not " + as
    		if cs == as {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:10:41 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/proxy/doc.go

    limitations under the License.
    */
    
    // Among other files, this directory contains functionality for two
    // stream proxies: streamtranslator.go and streamtunnel.go. Both of
    // these proxies allow the inter-connection of WebSocket and SPDY
    // streaming connections.
    //
    // The stream translator proxy is used for the RemoteCommand
    // subprotocol (e.g. kubectl exec, cp, and attach), and it connects
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 17:56:46 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/analysis/resource_alias_analysis.h

    }  // namespace detail
    
    // An analysis that runs on a module and maps each resource-type value to a
    // set of unique IDs representing the possible resources it could alias.
    //
    // Note that this is not an inter-procedural or inter-regional analysis, i.e.,
    // each function and region are handled separately and cross-function or cross-
    // region aliasing cannot be checked by this analysis.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/preemption/preemption_test.go

    			expected: sets.New("node1", "node4"),
    		},
    		{
    			name: "ErrReasonAffinityRulesNotMatch should not be tried as it indicates that the pod is unschedulable due to inter-pod affinity, but ErrReasonAntiAffinityRulesNotMatch should be tried as it indicates that the pod is unschedulable due to inter-pod anti-affinity",
    			nodesStatuses: framework.NodeToStatusMap{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  8. src/cmd/doc/pkg.go

    				found = true
    			}
    		}
    		if found {
    			pkg.Printf("type %s ", spec.Name)
    			inter.Methods.List, methods = methods, inter.Methods.List
    			err := format.Node(&pkg.buf, pkg.fs, inter)
    			if err != nil {
    				log.Fatal(err)
    			}
    			pkg.newlines(1)
    			// Restore the original methods.
    			inter.Methods.List = methods
    		}
    	}
    	return found
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 08 20:15:52 UTC 2024
    - 32K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/basic.mlir

    // RUN: tf-tfrt-opt -pass-pipeline='builtin.module(func.func(tf-tensor-device-copy),tfrt-lower-tf-savedmodel{hoist-invariant-ops=true},tf-to-tfrt{tfrt-cost-threshold=1024 tfrt-merge-inter-dependent-streams=true})' %s | FileCheck %s --dump-input-filter=all
    
    // CHECK-NOT: tf_saved_model.semantics
    // CHECK: tfrt.cost_threshold = 1024
    // CHECK-SAME: tfrt.merge_inter_dependent_streams = true
    module attributes {tf_saved_model.semantics} {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 00:18:59 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/interpodaffinity/plugin.go

    var _ framework.PreScorePlugin = &InterPodAffinity{}
    var _ framework.ScorePlugin = &InterPodAffinity{}
    var _ framework.EnqueueExtensions = &InterPodAffinity{}
    
    // InterPodAffinity is a plugin that checks inter pod affinity
    type InterPodAffinity struct {
    	parallelizer parallelize.Parallelizer
    	args         config.InterPodAffinityArgs
    	sharedLister framework.SharedLister
    	nsLister     listersv1.NamespaceLister
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 12 03:08:44 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top