Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for Chip (0.09 sec)

  1. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    This pass sets the device ordinal attribute of the ops using the replica id
    attribute. This is run immediately after the replica_to_island pass which
    sets the replica id attribute of these ops. Note for single chip usecase,
    the pass will check if there is one op and sets the device ordinal attribute
    to be zero.
    ### `-tf-replicate-invariant-op-hoisting`
    
    _Hoists replicate invariant operations out of replicate_
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  2. src/encoding/xml/marshal_test.go

    			"answer":   "42",
    		},
    		Err:  "xml: unsupported type: map[string]string",
    		Kind: reflect.Map,
    	},
    	{
    		Value: map[*Ship]bool{nil: false},
    		Err:   "xml: unsupported type: map[*xml.Ship]bool",
    		Kind:  reflect.Map,
    	},
    	{
    		Value: &Domain{Comment: []byte("f--bar")},
    		Err:   `xml: comments must not contain "--"`,
    	},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  3. istioctl/pkg/describe/describe.go

    		return "unknown"
    	}
    
    	if len(ingress.service.Status.LoadBalancer.Ingress) > 0 {
    		return ingress.service.Status.LoadBalancer.Ingress[0].IP
    	}
    
    	if hIP := ingress.pods[0].Status.HostIP; hIP != "" {
    		return hIP
    	}
    
    	// The scope of this function is to get the IP from Kubernetes, we do not
    	// ask Docker or minikube for an IP.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  4. src/cmd/dist/build.go

    	return m
    }
    
    // clangos lists the operating systems where we prefer clang to gcc.
    var clangos = []string{
    	"darwin", "ios", // macOS 10.9 and later require clang
    	"freebsd", // FreeBSD 10 and later do not ship gcc
    	"openbsd", // OpenBSD ships with GCC 4.2, which is now quite old.
    }
    
    // compilerEnvLookup returns the compiler settings for goos/goarch in map m.
    // kind is "CC" or "CXX".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    It means that you will be tempted to switch it off.
    
    So why should you bother?
    
    Dependency verification is about **trust** in what you get and what you ship.
    
    Without dependency verification it's easy for an attacker to compromise your supply chain.
    There are many real world examples of tools compromised by adding a malicious dependency.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    ==== Backward compatibility
    
    Our approach is to only do backwards-breaking Kotlin upgrades on a major Gradle release. We will always clearly document which Kotlin version we ship and announce upgrade plans before a major release.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    === Potential breaking changes
    
    [[kotlin_1_7_10]]
    ==== Upgrade to Kotlin 1.7.10
    
    The embedded Kotlin has been updated to https://github.com/JetBrains/kotlin/releases/tag/v1.7.10[Kotlin 1.7.10].
    
    Gradle doesn't ship with the `kotlin-gradle-plugin` but the upgrade to 1.7.10 can bring the new version.
    For example when you use the `kotlin-dsl` plugin.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
Back to top