Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 74 for main2 (0.24 sec)

  1. src/runtime/map.go

    		stop = newbit
    	}
    	for h.nevacuate != stop && bucketEvacuated(t, h, h.nevacuate) {
    		h.nevacuate++
    	}
    	if h.nevacuate == newbit { // newbit == # of oldbuckets
    		// Growing is all done. Free old main bucket array.
    		h.oldbuckets = nil
    		// Can discard old overflow buckets as well.
    		// If they are still referenced by an iterator,
    		// then the iterator holds a pointers to the slice.
    		if h.extra != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/dwarf.go

    			dirs = append(dirs, dir)
    		}
    		files = append(files, fileDir{base: file, dir: dirIdx})
    
    		// We can't use something that may be dead-code
    		// eliminated from a binary here. proc.go contains
    		// main and the scheduler, so it's not going anywhere.
    		if i := strings.Index(name, "runtime/proc.go"); i >= 0 && unit.Lib.Pkg == "runtime" {
    			d.dwmu.Lock()
    			if gdbscript == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

      // Find the TPUReplicationMetadata or TPUCompilationResult ops which will be
      // cloned/inserted into each region. We add them to the merged_set so that
      // they're ignored when extracting the four main functions.
      found_op = nullptr;
      for (OpType op : func.getOps<OpType>()) {
        if (found_op != nullptr) {
          func.emitOpError() << "number of " << found_op.getOperationName()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AbstractClassGenerator.java

                hasFields = true;
            }
    
            @Override
            void visitProperty(PropertyMetadata property) {
                if (isEagerAttachProperty(property)) {
                    // Property is read-only and main getter is final, so attach eagerly in constructor
                    // If the getter is not final, then attach lazily in the getter
                    eagerAttachProperties.add(property);
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 63K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

                               std::string(key_and_value_pair[1]))]);
        }
        inner_op.removeAttr(kAttrMapAttribute);
      }
      return success();
    }
    
    // Transfers the location of the main op in float function to ops with
    // `attr_map` attributes in quantized function.
    LogicalResult TransferLocation(func::FuncOp float_func,
                                   func::FuncOp quantized_func) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// empty string if the object was updated through the main resource. The
    	// value of this field is used to distinguish between managers, even if they
    	// share the same name. For example, a status update will be distinct from a
    	// regular update using the same manager name.
    	// Note that the APIVersion field is not related to the Subresource field and
    	// it always corresponds to the version of the main resource.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

      void runOnOperation() override;
    };
    
    void ResourceOpLiftingForMainFunctionPass::runOnOperation() {
      ModuleOp module = getOperation();
      func::FuncOp main_func = module.lookupSymbol<func::FuncOp>("main");
      if (!main_func) {
        return;
      }
    
      if (failed(TF::ResourceLiftingForFunctionalControlFlow(main_func))) {
        return signalPassFailure();
      }
    }
    
    }  // namespace
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  8. .bazelrc

    build:windows --copt=/D_USE_MATH_DEFINES
    build:windows --host_copt=/D_USE_MATH_DEFINES
    
    # Windows has a relatively short command line limit, which TF has begun to hit.
    # See https://docs.bazel.build/versions/main/windows.html
    build:windows --features=compiler_param_file
    build:windows --features=archive_param_file
    
    # Speed Windows compile times. Available in VS 16.4 (we are on 16.11). See
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    	case <-requestsDrained:
    	}
    
    	for _, storage := range oldInfo.storages {
    		// destroy only the main storage. Those for the subresources share cacher and etcd clients.
    		storage.CustomResource.DestroyFunc()
    	}
    }
    
    // Destroy shuts down storage layer for all registered CRDs.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/crdclient/types.gen.go

    // Code generated by pkg/config/schema/codegen/tools/collections.main.go. DO NOT EDIT.
    
    package crdclient
    
    import (
    	"context"
    	"fmt"
    
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/types"
    
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/schema/gvk"
    	"istio.io/istio/pkg/kube"
    
    	k8sioapiadmissionregistrationv1 "k8s.io/api/admissionregistration/v1"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 62.2K bytes
    - Viewed (0)
Back to top