Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 273 for cont (0.04 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/functional-control-flow-to-regions.mlir

      // CHECK: device = "/device:CPU:0"
      func.return
    }
    
    // -----
    
    func.func private @cond() -> tensor<i1>
    func.func private @body() -> ()
    
    // Test tf.While device is preserved.
    // CHECK-LABEL: func @testWhileDevice
    func.func @testWhileDevice() {
      "tf.While"() {cond = @cond, body = @body, is_stateless = false, device = "/device:CPU:0"} : () -> ()
    
      // CHECK: "tf.WhileRegion"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 06 21:59:28 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/jvm/application_plugin.adoc

    .Configure the application main class
    ====
    include::sample[dir="snippets/java/application/kotlin",files="build.gradle.kts[tags=mainClass-conf]"]
    include::sample[dir="snippets/java/application/groovy",files="build.gradle[tags=mainClass-conf]"]
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  3. cmd/bucket-replication-handlers.go

    			continue
    		}
    		clnt := globalBucketTargetSys.GetRemoteTargetClient(bucket, rule.Destination.Bucket)
    		if clnt == nil {
    			writeErrorResponse(ctx, w, errorCodes.ToAPIErrWithErr(ErrRemoteTargetNotFoundError, fmt.Errorf("replication config with rule ID %s has a stale target", rule.ID)), r.URL)
    			return
    		}
    		if lockEnabled {
    			lock, _, _, _, err := clnt.GetObjectLockConfig(ctx, clnt.Bucket)
    			if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  4. pkg/kube/inject/inject_test.go

    		},
    		{
    			name: "flat-single",
    			in:   "macvlan-conf-1",
    			want: "macvlan-conf-1, istio-cni",
    		},
    		{
    			name: "flat-multiple",
    			in:   "macvlan-conf-1, macvlan-conf-2",
    			want: "macvlan-conf-1, macvlan-conf-2, istio-cni",
    		},
    		{
    			name: "json-single",
    			in:   `[{"name": "macvlan-conf-1"}]`,
    			want: `[{"name": "macvlan-conf-1"}, {"name": "istio-cni"}]`,
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewriteARM64latelower.go

    	}
    	return false
    }
    func rewriteValueARM64latelower_OpARM64ADDSconstflags(v *Value) bool {
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (ADDSconstflags [c] x)
    	// cond: !isARM64addcon(c)
    	// result: (ADDSflags x (MOVDconst [c]))
    	for {
    		c := auxIntToInt64(v.AuxInt)
    		x := v_0
    		if !(!isARM64addcon(c)) {
    			break
    		}
    		v.reset(OpARM64ADDSflags)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/check.go

    	// mutate *pkg.
    	//
    	// (previously, pkg.goVersion was mutated here: go.dev/issue/61212)
    
    	return &Checker{
    		conf:    conf,
    		ctxt:    conf.Context,
    		pkg:     pkg,
    		Info:    info,
    		version: asGoVersion(conf.GoVersion),
    		objMap:  make(map[Object]*declInfo),
    		impMap:  make(map[importKey]*Package),
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/rulegen.go

    // Value variables in the s-expression rr.Match and the Go expression rr.Cond.
    func varCount(rr *RuleRewrite) map[string]int {
    	cnt := map[string]int{}
    	varCount1(rr.Loc, rr.Match, cnt)
    	if rr.Cond != "" {
    		expr, err := parser.ParseExpr(rr.Cond)
    		if err != nil {
    			log.Fatalf("%s: failed to parse cond %q: %v", rr.Loc, rr.Cond, err)
    		}
    		ast.Inspect(expr, func(n ast.Node) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 02 22:09:21 UTC 2023
    - 48.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/typecheck/stmt.go

    	}
    	return n
    }
    
    // tcFor typechecks an OFOR node.
    func tcFor(n *ir.ForStmt) ir.Node {
    	Stmts(n.Init())
    	n.Cond = Expr(n.Cond)
    	n.Cond = DefaultLit(n.Cond, nil)
    	if n.Cond != nil {
    		t := n.Cond.Type()
    		if t != nil && !t.IsBoolean() {
    			base.Errorf("non-bool %L used as for condition", n.Cond)
    		}
    	}
    	n.Post = Stmt(n.Post)
    	Stmts(n.Body)
    	return n
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 15:10:54 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyJvmLibraryArtifactResolutionIntegrationTest.groovy

        }
    
        def "resolves multiple artifacts of the same type"() {
            given:
            module.artifact(type: "source", classifier: "other-sources", ext: "jar", conf: "sources")
            module.artifact(type: "javadoc", classifier: "other-javadoc", ext: "jar", conf: "javadoc")
            module.publish()
    
            fixture.expectSourceArtifact("my-sources")
                    .expectSourceArtifact("other-sources")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  10. src/regexp/syntax/regexp.go

    				}
    				must = 0
    				cant = 0
    				start = i
    				did = true
    			}
    			must |= subMust
    			cant |= subCant
    			allCant |= subCant
    			if subMust != 0 {
    				last = i
    			}
    			if must == 0 && start == i {
    				start++
    			}
    		}
    		if !did {
    			// No conflicts: pass the accumulated must and cant upward.
    			return must, cant
    		}
    		if must != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:51 UTC 2024
    - 11.6K bytes
    - Viewed (0)
Back to top