Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 200 for biases (0.21 sec)

  1. istioctl/pkg/proxyconfig/proxyconfig.go

      # Retrieve cluster summary without using Kubernetes API
      ssh <user@hostname> 'curl localhost:15000/config_dump' > envoy-config.json
      istioctl proxy-config clusters --file envoy-config.json
    `,
    		Aliases: []string{"clusters", "c"},
    		Args: func(cmd *cobra.Command, args []string) error {
    			if (len(args) == 1) != (configDumpFile == "") {
    				cmd.Println(cmd.UsageString())
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 48K bytes
    - Viewed (0)
  2. tools/build-base-images.sh

    # You may obtain a copy of the License at
    #
    #    http://www.apache.org/licenses/LICENSE-2.0
    #
    # Unless required by applicable law or agreed to in writing, software
    # distributed under the License is distributed on an "AS IS" BASIS,
    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 17:24:41 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. cluster/addons/dns/kube-dns/kube-dns.yaml.base

    # You may obtain a copy of the License at
    #
    #     http://www.apache.org/licenses/LICENSE-2.0
    #
    # Unless required by applicable law or agreed to in writing, software
    # distributed under the License is distributed on an "AS IS" BASIS,
    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 03:19:02 UTC 2024
    - 7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/internal/analysisutil/util.go

    package analysisutil
    
    import (
    	"bytes"
    	"go/ast"
    	"go/printer"
    	"go/token"
    	"go/types"
    	"os"
    
    	"golang.org/x/tools/go/analysis"
    	"golang.org/x/tools/internal/aliases"
    	"golang.org/x/tools/internal/analysisinternal"
    )
    
    // Format returns a string representation of the expression.
    func Format(fset *token.FileSet, x ast.Expr) string {
    	var b bytes.Buffer
    	printer.Fprint(&b, fset, x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/dependencyManagement/catalogs-settings/kotlin/build.gradle.kts

    dependencies {
        implementation(libs.bundles.groovy)
    }
    // end::use_dependency_bundle[]
    
    // tag::type_unsafe_access[]
    val versionCatalog = versionCatalogs.named("libs")
    println("Library aliases: ${versionCatalog.libraryAliases}")
    dependencies {
        versionCatalog.findLibrary("groovy-json").ifPresent {
            implementation(it)
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 11:03:14 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/go/types/typeutil/map.go

    // hashFor computes the hash of t.
    func (h Hasher) hashFor(t types.Type) uint32 {
    	// See Identical for rationale.
    	switch t := t.(type) {
    	case *types.Basic:
    		return uint32(t.Kind())
    
    	case *aliases.Alias:
    		return h.Hash(aliases.Unalias(t))
    
    	case *types.Array:
    		return 9043 + 2*uint32(t.Len()) + 3*h.Hash(t.Elem())
    
    	case *types.Slice:
    		return 9049 + 2*h.Hash(t.Elem())
    
    	case *types.Struct:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/python/quantize_model.cc

      UpdateFunctionAliases(function_aliases, *module_ref);
    
      // Collect the names of the functions that have aliases so that they may not
      // be inlined.
      absl::flat_hash_set<std::string> aliased_function_names;
      absl::c_for_each(function_aliases, [&](const auto &aliases) {
        return aliased_function_names.insert(aliases.first);
      });
    
      TF_RETURN_IF_ERROR(PreprocessAndFreezeGraph(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/types/KtTypeMappingMode.kt

    package org.jetbrains.kotlin.analysis.api.types
    
    public enum class KaTypeMappingMode {
        /**
         * kotlin.Int is mapped to I
         */
        DEFAULT,
    
        /**
         * kotlin.Int is mapped to I
         * Type aliases are mapped to their expanded form
         */
        DEFAULT_UAST,
    
        /**
         * kotlin.Int is mapped to Ljava/lang/Integer;
         */
        GENERIC_ARGUMENT,
    
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/dependencyManagement/catalogs-settings/groovy/build.gradle

    dependencies {
        implementation libs.bundles.groovy
    }
    // end::use_dependency_bundle[]
    
    // tag::type_unsafe_access[]
    def versionCatalog = versionCatalogs.named("libs")
    println "Library aliases: ${versionCatalog.libraryAliases}"
    dependencies {
        versionCatalog.findLibrary("groovy-json").ifPresent {
            implementation(it)
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 11:03:14 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/stringintconv/string.go

    	"golang.org/x/tools/go/analysis"
    	"golang.org/x/tools/go/analysis/passes/inspect"
    	"golang.org/x/tools/go/analysis/passes/internal/analysisutil"
    	"golang.org/x/tools/go/ast/inspector"
    	"golang.org/x/tools/internal/aliases"
    	"golang.org/x/tools/internal/typeparams"
    )
    
    //go:embed doc.go
    var doc string
    
    var Analyzer = &analysis.Analyzer{
    	Name:     "stringintconv",
    	Doc:      analysisutil.MustExtractDoc(doc, "stringintconv"),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.2K bytes
    - Viewed (0)
Back to top