Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 197 for isAllowed (0.15 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/smuggle_disallowed_ops.cc

        : public PassWrapper<SmuggleDisallowedOpsPass,
                             OperationPass<func::FuncOp>> {
     public:
      StringRef getArgument() const final { return "smuggle-disallowed-ops-pass"; }
      StringRef getDescription() const final {
        return "Smuggle disallowed ops via stablehlo.custom_calls";
      }
      void getDependentDialects(DialectRegistry& registry) const final {
        registry.insert<mlir::stablehlo::StablehloDialect>();
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 19 01:14:04 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/telemetry/counter/countertest/countertest_go121.go

    //go:build go1.21
    
    package countertest
    
    import "testing"
    
    func init() {
    	// Extra safety check for go1.21+.
    	if !testing.Testing() {
    		panic("use of this package is disallowed in non-testing code")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 363 bytes
    - Viewed (0)
  3. test/interface/struct.go

    	s := &S1{1}
    	var i I1 = s
    	i.Put(2)
    	check(i.Get() == 1, "f3 i")
    	check(s.i == 1, "f3 s")
    }
    
    type S2 struct { i int }
    func (p *S2) Get() int { return p.i }
    func (p *S2) Put(i int) { p.i = i }
    
    // Disallowed by restriction of values going to pointer receivers
    // func f4() {
    //	 s := S2{1}
    //	 var i I1 = s
    //	 i.Put(2)
    //	 check(i.Get() == 2, "f4 i")
    //	 check(s.i == 1, "f4 s")
    // }
    
    func f5() {
    	s := S2{1}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Feb 19 06:33:41 UTC 2012
    - 2.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/PropertySpec.groovy

            property.implicitFinalizeValue()
            property.implicitFinalizeValue()
            property.disallowChanges()
    
            then:
            0 * _
        }
    
        def "can finalize after changes disallowed"() {
            def property = propertyWithNoValue()
            def function = Mock(Callable)
            def provider = new DefaultProvider<T>(function)
    
            when:
            property.set(provider)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 87.8K bytes
    - Viewed (0)
  5. cluster/gce/addons/admission-resource-quota-critical-pods/resource-quota.yaml

    # critical pods are configured as a limited resource by admission_controller_config.yaml,
    # which means they are disallowed unless explicitly allowed by a namespaced quota object.
    # This quota effectively removes the restriction on the number of critical pods allowed in the kube-system namespace.
    apiVersion: v1
    kind: ResourceQuota
    metadata:
      name: gcp-critical-pods
      namespace: kube-system
      labels:
        addonmanager.kubernetes.io/mode: Reconcile
    spec:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 17 13:52:19 UTC 2020
    - 644 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_invalid_path_plus.txt

    # https://golang.org/issue/44776
    # The '+' character should be disallowed in module paths, but allowed in package
    # paths within valid modules.
    
    # 'go list' accepts package paths with pluses.
    cp go.mod.orig go.mod
    go get example.net/cmd
    go list example.net/cmd/x++
    
    # 'go list -m' rejects module paths with pluses.
    ! go list -versions -m 'example.net/bad++'
    stderr '^go: malformed module path "example.net/bad\+\+": invalid char ''\+''$'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 821 bytes
    - Viewed (0)
  7. test/convert3.go

    // errorcheck
    
    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Verify allowed and disallowed conversions.
    // Does not compile.
    
    package main
    
    // everything here is legal except the ERROR line
    
    var c chan int
    var d1 chan<- int = c
    var d2 = (chan<- int)(c)
    
    var e *[4]int
    var f1 []int = e[0:]
    var f2 = []int(e[0:])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Feb 19 02:19:43 UTC 2012
    - 544 bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/execution/ExecutionAccessListener.java

    import org.gradle.internal.service.scopes.Scope;
    
    @EventScope(Scope.BuildTree.class)
    public interface ExecutionAccessListener {
    
        /**
         * Called when accessing the injected service of type that disallowed during execution phase (eg. Project).
         */
        void disallowedAtExecutionInjectedServiceAccessed(Class<?> injectedServiceType, String getterName, String consumer);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  9. internal/bucket/replication/replication_test.go

    		{ObjectOpts{Name: "c2test", VersionID: "vid", DeleteMarker: true, OpType: DeleteReplicationType}, cfgs[1], false},             // 13. permanent delete of DeleteMarker version, disallowed by DeleteReplication status
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 28 17:44:56 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/work_replace_main_module.txt

    # Ensure that replaces of the main module in workspace modules
    # are ignored, and replaces in the go.work file are disallowed.
    # This tests against an issue where requirements of the
    # main module were being ignored because the main module
    # was replaced in a transitive dependency with another
    # version.
    
    go list example.com/dep
    
    cp replace_main_module.go.work go.work
    ! go list example.com/dep
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 20 19:10:29 UTC 2022
    - 1.1K bytes
    - Viewed (0)
Back to top