Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 34 for creators (0.63 sec)

  1. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    to do with this creature when I get it home?' when it grunted
    again, so violently, that she looked down into its face in some
    alarm.  This time there could be NO mistake about it:  it was
    neither more nor less than a pig, and she felt that it would be
    quite absurd for her to carry it further.
    
      So she set the little creature down, and felt quite relieved to
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 29 21:35:03 UTC 2012
    - 145.2K bytes
    - Viewed (0)
  2. src/reflect/value.go

    	}
    	t := typ.common()
    	ch := makechan(t, buffer)
    	return Value{t, ch, flag(Chan)}
    }
    
    // MakeMap creates a new map with the specified type.
    func MakeMap(typ Type) Value {
    	return MakeMapWithSize(typ, 0)
    }
    
    // MakeMapWithSize creates a new map with the specified type
    // and initial space for approximately n elements.
    func MakeMapWithSize(typ Type, n int) Value {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

    // this map.
    using FeedsByNode = absl::flat_hash_map<
        absl::string_view,
        absl::flat_hash_map<int, const std::pair<std::string, ArrayInfo>*>>;
    
    // Creates from a `GraphImportConfig::InputArrays` a mapping from a feeds output
    // tensor name to index and ArrayInfo. Keys and values are backed by
    // `GraphImportConfig::InputArrays`.
    absl::StatusOr<FeedsByNode> GetFeedsByNode(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top