Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 162 for Element (0.2 sec)

  1. src/cmd/cgo/out.go

    	name := n.Go
    	gtype := n.FuncType.Go
    	void := gtype.Results == nil || len(gtype.Results.List) == 0
    	if n.AddError {
    		// Add "error" to return type list.
    		// Type list is known to be 0 or 1 element - it's a C function.
    		err := &ast.Field{Type: ast.NewIdent("error")}
    		l := gtype.Results.List
    		if len(l) == 0 {
    			l = []*ast.Field{err}
    		} else {
    			l = []*ast.Field{l[0], err}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  2. src/testing/testing.go

    // The argument to the -run, -bench, and -fuzz command-line flags is an unanchored regular
    // expression that matches the test's name. For tests with multiple slash-separated
    // elements, such as subtests, the argument is itself slash-separated, with
    // expressions matching each name element in turn. Because it is unanchored, an
    // empty expression matches any string.
    // For example, using "matching" to mean "whose name contains":
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/dwarf.go

    	return sn[len(dwarf.InfoPrefix):]
    }
    
    func (d *dwctxt) defptrto(dwtype loader.Sym) loader.Sym {
    
    	// FIXME: it would be nice if the compiler attached an aux symbol
    	// ref from the element type to the pointer type -- it would be
    	// more efficient to do it this way as opposed to via name lookups.
    
    	ptrname := "*" + d.nameFromDIESym(dwtype)
    	if die := d.find(ptrname); die != 0 {
    		return die
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    	})
    }
    
    func TestNonServiceConfig(t *testing.T) {
    	store, sd, _ := initServiceDiscovery(t)
    
    	// Create a non-service configuration element. This should not affect the service registry at all.
    	cfg := config.Config{
    		Meta: config.Meta{
    			GroupVersionKind:  gvk.DestinationRule,
    			Name:              "fakeDestinationRule",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  5. tensorflow/c/c_api_test.cc

        // The following input string length is large enough to make sure that
        // copy to tstring in large mode.
        std::string source =
            "This is the " + std::to_string(i + 1) + "th. data element\n";
        TF_TString_Copy(&data[i], source.c_str(), source.length());
      }
    
      TF_DeleteTensor(t);
    }
    
    }  // namespace
    }  // namespace tensorflow
    
    // TODO(josh11b): Test:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  6. cluster/gce/windows/k8s-node-setup.psm1

      # interface is added, and it seems to subsume the routes of the "Ethernet"
      # interface (trying to add routes on the Ethernet interface at this point just
      # results in "New-NetRoute : Element not found" errors). I don't know what's
      # up with that, but since it's hard to know what's the right thing to do here
      # we just try to add the route on all of the network adapters.
      Get-NetAdapter | ForEach-Object {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    		return "", nil, fmt.Errorf("failed to delete object: %w", err)
    	}
    
    	// Since we deleted bazSecond (last element of preset), we remove it from preset.
    	preset = preset[:len(preset)-1]
    	var created []*example.Pod
    	for _, item := range preset {
    		created = append(created, item.storedObj)
    	}
    	return initialRV, created, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    // label selector matches no objects.
    // +structType=atomic
    type LabelSelector struct {
    	// matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels
    	// map is equivalent to an element of matchExpressions, whose key field is "key", the
    	// operator is "In", and the values array contains only "value". The requirements are ANDed.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (1)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    // values of a Cartesian product of those sequences' elements.
    //
    // Synopsis:
    // Combine(gen1, gen2, ..., genN)
    //   - returns a generator producing sequences with elements coming from
    //     the Cartesian product of elements from the sequences generated by
    //     gen1, gen2, ..., genN. The sequence elements will have a type of
    //     tuple<T1, T2, ..., TN> where T1, T2, ..., TN are the types
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 74.1K bytes
    - Viewed (0)
  10. src/runtime/mheap.go

    	// scan for pages at ~300 GB/ms on a 2.6GHz Core i7, but can only
    	// free spans at ~32 MB/ms. Using 512 pages bounds this at
    	// roughly 100µs.
    	//
    	// Must be a multiple of the pageInUse bitmap element size and
    	// must also evenly divide pagesPerArena.
    	pagesPerReclaimerChunk = 512
    
    	// physPageAlignedStacks indicates whether stack allocations must be
    	// physical page aligned. This is a requirement for MAP_STACK on
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
Back to top