Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,054 for inter (0.09 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. pkg/controller/job/indexed_job_utils.go

    				continue
    			}
    			if inter.Last >= completions {
    				inter.Last = completions - 1
    			}
    		} else {
    			inter.Last = inter.First
    		}
    		if lastInterval != nil && lastInterval.Last == inter.First-1 {
    			lastInterval.Last = inter.Last
    		} else {
    			result = append(result, inter)
    			lastInterval = &result[len(result)-1]
    		}
    	}
    	return result
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 00:44:53 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  5. pkg/kubelet/stats/helper.go

    		Time: metav1.NewTime(cstat.Timestamp),
    	}
    
    	for i := range cstat.Network.Interfaces {
    		inter := cstat.Network.Interfaces[i]
    		iStat := statsapi.InterfaceStats{
    			Name:     inter.Name,
    			RxBytes:  &inter.RxBytes,
    			RxErrors: &inter.RxErrors,
    			TxBytes:  &inter.TxBytes,
    			TxErrors: &inter.TxErrors,
    		}
    
    		if inter.Name == defaultNetworkInterfaceName {
    			iStats.InterfaceStats = iStat
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 23:40:02 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  6. 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)
  7. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model_optimize_global_tensors_interprocedural.mlir

        func.return %c0 : tensor<f32>
      }
    }
    
    // -----
    
    // CHECK-LABEL: module attributes {tf_saved_model.semantics}
    module attributes {tf_saved_model.semantics} {
    
      // Test case: The inter-procedural analysis with different types of
      // TF call ops
    
      // CHECK: "tf_saved_model.global_tensor"() <{
      // CHECK-SAME: is_mutable
      // CHECK-SAME: }> : () -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:49:35 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  8. src/internal/abi/switch.go

    		return true
    	default:
    		return false
    	}
    }
    
    type TypeAssert struct {
    	Cache   *TypeAssertCache
    	Inter   *InterfaceType
    	CanFail bool
    }
    type TypeAssertCache struct {
    	Mask    uintptr
    	Entries [1]TypeAssertCacheEntry
    }
    type TypeAssertCacheEntry struct {
    	// type of source value (a *runtime._type)
    	Typ uintptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 17:02:53 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. 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)
  10. maven-core/src/main/java/org/apache/maven/project/collector/MultiModuleCollectionStrategy.java

         * - A multi-module project containing a module which is a plugin and another module which depends on it.
         * - Just the plugin is being built with the -f <pom> flag.
         * - Because of inter-module dependency collection, all projects in the multi-module project are collected.
         * - The plugin is not yet installed in a repository.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 09:07:17 UTC 2023
    - 9.1K bytes
    - Viewed (0)
Back to top