Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for Flatten (0.75 sec)

  1. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

      "TFL::IsReducedTailOfShape($0.getType(), $1.getType())">>;
    
    def IsRankLessThanEqualTo : Constraint<CPred<
      "$0.getType().cast<ShapedType>().getRank() <= "
      "$1.getType().cast<ShapedType>().getRank()">>;
    
    def Flatten : NativeCodeCall<
      "$0.cast<DenseElementsAttr>()"
        ".reshape(RankedTensorType::get({$0.getType().cast<ShapedType>().getNumElements()}, "
                                       "$0.getType().cast<ShapedType>().getElementType()))">;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollectionSpec.groovy

                collection.setFrom((Iterable) explicit)
            }
    
            when:
            operations.each {operation -> operation.call(collection) }
    
            then:
            collection.from.flatten() as List == expected
    
            where:
            expected        | explicit      | convention        | label                                         | operations
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 53K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/serviceregistry_test.go

    		if p.Port == port {
    			pn = p.Name
    			break
    		}
    	}
    	if pn == "" && port != 0 {
    		return nil
    	}
    	shards.RLock()
    	defer shards.RUnlock()
    	return slices.FilterInPlace(slices.Flatten(maps.Values(shards.Shards)), func(endpoint *model.IstioEndpoint) bool {
    		return pn == "" || endpoint.ServicePortName == pn
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    		if p.Port == port {
    			pn = p.Name
    			break
    		}
    	}
    	if pn == "" && port != 0 {
    		return nil
    	}
    	shards.RLock()
    	defer shards.RUnlock()
    	return slices.FilterInPlace(slices.Flatten(maps.Values(shards.Shards)), func(endpoint *model.IstioEndpoint) bool {
    		return pn == "" || endpoint.ServicePortName == pn
    	})
    }
    
    func genTestSpiffe(ns, serviceAccount string) string {
    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. cluster/gce/windows/k8s-node-setup.psm1

        # Rename the field 'log' to a more generic field 'message'. This way the
        # fluent-plugin-google-cloud knows to flatten the field as textPayload
        # instead of jsonPayload after extracting 'time', 'severity' and
        # 'stream' from the record.
        message ${record['log']}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  6. pilot/pkg/model/push_context.go

    	for k, v := range rawAlias {
    		unnamespacedRawAlias[k.Hostname] = v
    	}
    
    	// resolvedAliases builds a map of Alias -> Concrete, fully resolving through multiple hops.
    	// Ex: Alias1 -> Alias2 -> Concrete will flatten to Alias1 -> Concrete.
    	resolvedAliases := make(map[NamespacedHostname]host.Name, len(rawAlias))
    	for alias, referencedService := range rawAlias {
    		// referencedService may be another alias or a concrete service.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  7. src/index/suffixarray/sais2.go

    	// Because j-1 is type L, inserting it into sa now will sort it correctly.
    	// But we want to distinguish a j-1 with j-2 of type L from type S.
    	// We can process the former but want to leave the latter for the caller.
    	// We record the difference by negating j-1 if it is preceded by type S.
    	// Either way, the insertion (into the text[j-1] bucket) is guaranteed to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  8. kotlin-js-store/yarn.lock

      integrity sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==
    
    flatted@^3.2.7:
      version "3.2.7"
      resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.7.tgz#609f39207cb614b89d0765b477cb2d437fbf9787"
      integrity sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jul 22 12:28:51 UTC 2023
    - 87.4K bytes
    - Viewed (0)
  9. tensorflow/BUILD

        visibility = ["//visibility:public"],
    )
    
    # Sometimes Bazel reports darwin_x86_64 as "darwin" and sometimes as
    # "darwin_x86_64". The former shows up when building on a Mac x86_64 host for a Mac x86_64 target.
    # The latter shows up when cross-compiling for Mac x86_64 from a Mac ARM machine and in internal
    # Google builds.
    config_setting(
        name = "macos_x86_64_default",
        constraint_values = if_google(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  10. src/runtime/mgcscavenge.go

    //
    // The former happens on a goroutine much like the background sweeper which is
    // soft-capped at using scavengePercent of the mutator's time, based on
    // order-of-magnitude estimates of the costs of scavenging. The latter happens
    // when allocating pages from the heap.
    //
    // The scavenger's primary goal is to bring the estimated heap RSS of the
    // application down to a goal.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
Back to top