Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 30 for creators (0.18 sec)

  1. tensorflow/c/c_api.cc

              "and will trigger an error in the future. Either don't modify "
              "nodes after running them or create a new session.");
        }
      }
    }
    
    namespace {
    
    // Helper method that creates a shape handle for a shape described by dims.
    tensorflow::shape_inference::ShapeHandle ShapeHandleFromDims(
        tensorflow::shape_inference::InferenceContext* ic, int num_dims,
        const int64_t* dims) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/exec.go

    				gofiles[i] = coverFile
    			} else {
    				cgofiles[i-len(gofiles)] = coverFile
    			}
    		}
    
    		if cfg.Experiment.CoverageRedesign {
    			if len(infiles) != 0 {
    				// Coverage instrumentation creates new top level
    				// variables in the target package for things like
    				// meta-data containers, counter vars, etc. To avoid
    				// collisions with user variables, suffix the var name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet.go

    	NodeStartupLatencyTracker util.NodeStartupLatencyTracker
    	// remove it after cadvisor.UsingLegacyCadvisorStats dropped.
    	useLegacyCadvisorStats bool
    }
    
    // makePodSourceConfig creates a config.PodConfig from the given
    // KubeletConfiguration or returns an error.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  4. pkg/controller/statefulset/stateful_set_control_test.go

    			rev2 := newRevisionOrDie(set2, 3)
    			tests := []testcase{
    				{
    					name:            "creates initial revision",
    					existing:        nil,
    					set:             set,
    					expectedCount:   1,
    					expectedCurrent: rev0,
    					expectedUpdate:  rev0,
    					err:             false,
    				},
    				{
    					name:            "creates revision on update",
    					existing:        []*apps.ControllerRevision{rev0},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      if (shape.has_value())
        return tensorflow::GetTypeFromTFTensorShape(shape.value(), element_type);
      return UnrankedTensorType::get(element_type);
    }
    
    // Returns true if the op creates a TensorList.
    bool IsTensorListInitOp(Operation* op) {
      return isa<TensorListReserveOp>(op) || isa<EmptyTensorListOp>(op) ||
             isa<TensorListFromTensorOp>(op);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  6. cluster/gce/gci/configure-helper.sh

          if [[ "${opformat,,}" == "${format,,}" && "${opinterface,,}" == "${interface,,}" ]]; then
            localdisknum=$((localdisknum+opnum))
          fi
        done
      fi
    }
    
    # Creates a symlink for a ($1) so that it may be used as block storage
    function safe-block-symlink(){
      local device="${1}"
      local symdir="${2}"
    
      mkdir -p "${symdir}"
    
      get-or-generate-uuid "${device}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIntegrationTest.groovy

                }
                dependencies {
                    compile 'test:test:1.3:foo'
                    compile 'test:test:1.3:bar'
                }
    
                /*
                 * This transform creates a name that is independent of
                 * the original file name, thus losing the classifier that
                 * was encoded in it.
                 */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:42 UTC 2023
    - 100.8K bytes
    - Viewed (0)
  8. src/cmd/go/internal/load/pkg.go

    // in GOPATH mode, and modload.loaded (accessed via modload.Lookup) may be
    // modified by modload.LoadPackages.
    type preload struct {
    	cancel chan struct{}
    	sema   chan struct{}
    }
    
    // newPreload creates a new preloader. flush must be called later to avoid
    // accessing global state while it is being modified.
    func newPreload() *preload {
    	pre := &preload{
    		cancel: make(chan struct{}),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  9. cluster/gce/util.sh

        gcloud compute instances add-access-config "${NAME}" \
          --project "${PROJECT}" --zone "${ZONE}" \
          --access-config-name "${ACCESS_CONFIG_NAME}" \
          --address "${IP_ADDR}"
      fi
    }
    
    # Creates load balancer in front of apiserver if it doesn't exists already. Assumes there's only one
    # existing master replica.
    #
    # Assumes:
    #   PROJECT
    #   MASTER_NAME
    #   ZONE
    #   REGION
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

          """
    
          out = math_ops.matmul(input_tensor, self.filters)
          return {'output': out}
    
      def _simple_model_data_gen(self) -> repr_dataset.RepresentativeDataset:
        """Creates an interable of representative samples.
    
        Yields:
          Representative samples, which is basically a mapping of: input key ->
          input value.
        """
        for _ in range(8):
          yield {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
Back to top