Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 954 for space1 (0.14 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/tpu_space_to_depth_pass.cc

      }
    
      // Iterate through block argument and its convolution users. Space to depth
      // transform will be applied only if all the below conditions are satisfied:
      //  1. All the users of the block argument will lead to convolutions;
      //  2. block_size of for the space to depth transform for these convolutions
      //     are the same;
      //  3. block_size of for the space to depth transform for these convolutions
      //     are larger than 1.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  2. src/runtime/mem_bsd.go

    }
    
    // Indicates not to reserve swap space for the mapping.
    const _sunosMAP_NORESERVE = 0x40
    
    func sysReserveOS(v unsafe.Pointer, n uintptr) unsafe.Pointer {
    	flags := int32(_MAP_ANON | _MAP_PRIVATE)
    	if GOOS == "solaris" || GOOS == "illumos" {
    		// Be explicit that we don't want to reserve swap space
    		// for PROT_NONE anonymous mappings. This avoids an issue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/rsc.io/markdown/inline.go

    			b.last[m-1] = estart
    		}
    		if m == n {
    			// Match.
    			// Line endings are converted to single spaces.
    			text := s[i+n : estart]
    			text = strings.ReplaceAll(text, "\n", " ")
    
    			// If enclosed text starts and ends with a space and is not all spaces,
    			// one space is removed from start and end, to allow `` ` `` to quote a single backquote.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  4. src/cmd/go/internal/help/helpdoc.go

    Second, if you are compiling a Go program not in a work space,
    you can use a relative path in an import statement in that program
    to refer to nearby code also not in a work space.
    This makes it easy to experiment with small multipackage programs
    outside of the usual work spaces, but such programs cannot be
    installed with "go install" (there is no work space in which to install them),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/rsc.io/markdown/parse.go

    	t := *s
    	for n := 0; n < max; n++ {
    		if t.spaces > 0 {
    			t.spaces--
    			continue
    		}
    		if t.i >= len(t.text) && eolOK {
    			continue
    		}
    		if t.i < len(t.text) {
    			switch t.text[t.i] {
    			case '\t':
    				t.spaces = 4 - (t.i-t.tab)&3 - 1
    				t.i++
    				t.tab = t.i
    				continue
    			case ' ':
    				t.i++
    				continue
    			}
    		}
    		if n >= min {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  6. pkg/config/validation/agent/extensionprovider_test.go

    				Port:    9411,
    			},
    			valid: true,
    		},
    		{
    			name: "zipkin service with invalid namespace",
    			config: &meshconfig.MeshConfig_ExtensionProvider_ZipkinTracingProvider{
    				Service: "name/space/zipkin.istio-system",
    				Port:    9411,
    			},
    			valid: false,
    		},
    		{
    			name: "zipkin service with port",
    			config: &meshconfig.MeshConfig_ExtensionProvider_ZipkinTracingProvider{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. src/html/template/transition.go

    	if bytes.ContainsAny(s, "#?") {
    		c.urlPart = urlPartQueryOrFrag
    	} else if len(s) != eatWhiteSpace(s, 0) && c.urlPart == urlPartNone {
    		// HTML5 uses "Valid URL potentially surrounded by spaces" for
    		// attrs: https://www.w3.org/TR/html5/index.html#attributes-1
    		c.urlPart = urlPartPreQuery
    	}
    	return c, len(s)
    }
    
    // tJS is the context transition function for the JS state.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 19:54:31 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/cel/library/format_test.go

    			expr:        `format.datetime().validate("2021-01-01T00:00:00Z")`,
    			expectValue: types.OptionalNone,
    		},
    		{
    			name:        "dns1123Label",
    			expr:        `format.dns1123Label().validate("contains a space")`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  9. src/regexp/syntax/perl_groups.go

    	`[:lower:]`:   {+1, code11},
    	`[:^lower:]`:  {-1, code11},
    	`[:print:]`:   {+1, code12},
    	`[:^print:]`:  {-1, code12},
    	`[:punct:]`:   {+1, code13},
    	`[:^punct:]`:  {-1, code13},
    	`[:space:]`:   {+1, code14},
    	`[:^space:]`:  {-1, code14},
    	`[:upper:]`:   {+1, code15},
    	`[:^upper:]`:  {-1, code15},
    	`[:word:]`:    {+1, code16},
    	`[:^word:]`:   {-1, code16},
    	`[:xdigit:]`:  {+1, code17},
    	`[:^xdigit:]`: {-1, code17},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. src/reflect/abi.go

    	// the call and return paths of a Go function.
    	call, ret abiSeq
    
    	// These fields describe the stack space allocated
    	// for the call. stackCallArgsSize is the amount of space
    	// reserved for arguments but not return values. retOffset
    	// is the offset at which return values begin, and
    	// spill is the size in bytes of additional space reserved
    	// to spill argument registers into in case of preemption in
    	// reflectcall's stack frame.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:08:32 UTC 2024
    - 15K bytes
    - Viewed (0)
Back to top