Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 502 for central (0.11 sec)

  1. src/go/ast/filter.go

    // it returns false otherwise.
    func PackageExports(pkg *Package) bool {
    	return filterPackage(pkg, exportFilter, true)
    }
    
    // ----------------------------------------------------------------------------
    // General filtering
    
    type Filter func(string) bool
    
    func filterIdentList(list []*Ident, f Filter) []*Ident {
    	j := 0
    	for _, x := range list {
    		if f(x.Name) {
    			list[j] = x
    			j++
    		}
    	}
    	return list[0:j]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. pkg/config/xds/filter_types.gen.go

    	_ "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/config/endpoint/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/config/grpc_credential/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/config/listener/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/config/metrics/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/config/overload/v3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 02:48:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  3. cmd/postpolicyform.go

    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.
    //
    // This program is distributed in the hope that it will be useful
    // but WITHOUT ANY WARRANTY; without even the implied warranty of
    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    // GNU Affero General Public License for more details.
    //
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 06 10:52:41 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  4. cmd/generic-handlers.go

    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.
    //
    // This program is distributed in the hope that it will be useful
    // but WITHOUT ANY WARRANTY; without even the implied warranty of
    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    // GNU Affero General Public License for more details.
    //
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 01:01:15 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/convert_control_to_data_outputs.cc

    // ```
    //
    // `%merged_control` is a NoOp control barrier in this case.
    //
    // Checks if the value `control` is a NoOp control barrier.
    bool IsNoOpControlBarrier(Value control) {
      if (!mlir::isa<ControlType>(control.getType())) return false;
    
      auto control_island = dyn_cast_or_null<IslandOp>(control.getDefiningOp());
      if (!control_island) return false;
    
      // All islands perfectly wrap a single op is an invariant of this pass and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/apis/kubeadm/v1beta3/types.go

    	// Possible usages are:
    	// e.g. In a cluster with more than one control plane instances, this field should be
    	// assigned the address of the external load balancer in front of the
    	// control plane instances.
    	// e.g.  in environments with enforced node recycling, the ControlPlaneEndpoint
    	// could be used for assigning a stable DNS to the control plane.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  7. src/runtime/mstats.go

    //
    // The world must be stopped.
    func readmemstats_m(stats *MemStats) {
    	assertWorldStopped()
    
    	// Flush mcaches to mcentral before doing anything else.
    	//
    	// Flushing to the mcentral may in general cause stats to
    	// change as mcentral data structures are manipulated.
    	systemstack(flushallmcaches)
    
    	// Calculate memory allocator stats.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/flags.h

      // we do not do deadness related safety checks.  This is unsound in general,
      // but can be used as a debugging aid.
      bool tf_xla_disable_deadness_safety_checks_for_debugging;
    
      // If tf_xla_disable_resource_variable_safety_checks_for_debugging is set to
      // true then we do not do safety checks to preserve TensorFlow's resource
      // variable concurrency semantics.  This is unsound in general, but can be
      // used as a debugging aid.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/block.go

    	// A list of values that determine how the block is exited. The number
    	// and type of control values depends on the Kind of the block. For
    	// instance, a BlockIf has a single boolean control value and BlockExit
    	// has a single memory control value.
    	//
    	// The ControlValues() method may be used to get a slice with the non-nil
    	// control values that can be ranged over.
    	//
    	// Controls[1] must be nil if Controls[0] is nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  10. licenses/github.com/hashicorp/go-version/LICENSE

          either its Contributions or its Contributor Version.
    
    1.12. “Secondary License”
    
          means either the GNU General Public License, Version 2.0, the GNU Lesser
          General Public License, Version 2.1, the GNU Affero General Public
          License, Version 3.0, or any later versions of those licenses.
    
    1.13. “Source Code Form”
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:40 UTC 2024
    - 15.6K bytes
    - Viewed (0)
Back to top