Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 273 for cont (0.32 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/localize_var_handles.mlir

      attributes {tf_saved_model.exported_names = ["read_from_global"]} {
        // CHECK: [[name:%.*]] = "tf.VarHandleOp"
        // CHECK: "tf.ReadVariableOp"([[name]])
        %cond = builtin.unrealized_conversion_cast to tensor<i1>
        %0 = "tf.IfRegion"(%cond) ({
          "tf.Yield"(%arg0) : (tensor<!tf_type.resource<tensor<10xf32>>>) -> ()
        }, {
          "tf.Yield"(%arg0) : (tensor<!tf_type.resource<tensor<10xf32>>>) -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 23 21:12:02 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/walk/range.go

    				body = append(body, rangeAssign(nrange, hv1t))
    			}
    		}
    	}
    
    	typecheck.Stmts(init)
    
    	nfor.PtrInit().Append(init...)
    
    	typecheck.Stmts(nfor.Cond.Init())
    
    	nfor.Cond = typecheck.Expr(nfor.Cond)
    	nfor.Cond = typecheck.DefaultLit(nfor.Cond, nil)
    	nfor.Post = typecheck.Stmt(nfor.Post)
    	typecheck.Stmts(body)
    	nfor.Body.Append(body...)
    	nfor.Body.Append(nrange.Body...)
    
    	var n ir.Node = nfor
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:52:33 UTC 2023
    - 17.6K bytes
    - Viewed (0)
  3. src/go/types/check.go

    	//
    	// (previously, pkg.goVersion was mutated here: go.dev/issue/61212)
    
    	// In go/types, conf._EnableAlias is controlled by gotypesalias.
    	conf._EnableAlias = gotypesalias.Value() != "0"
    
    	return &Checker{
    		conf:    conf,
    		ctxt:    conf.Context,
    		fset:    fset,
    		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.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ProjectDependencyResolveIntegrationTest.groovy

                            assert project(":api").configurations.conf.state == Configuration.State.UNRESOLVED
    
                            configurations.conf.resolve()
    
                            assert configurations.conf.state == Configuration.State.RESOLVED
                            assert project(":api").configurations.conf.state == Configuration.State.UNRESOLVED
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  5. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/publication/IvyComponentParser.java

            for (SoftwareComponentVariant variant : component.getUsages()) {
                String conf = mapVariantNameToIvyConfiguration(variant.getName());
                configurations.maybeCreate(conf);
                if (defaultShouldExtend(variant)) {
                    defaultConfiguration.extend(conf);
                }
            }
    
            return configurations;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  6. src/cmd/go/internal/script/engine.go

    			}
    		} else {
    			impl = e.Conds[cond.tag]
    			if impl == nil {
    				return false, fmt.Errorf("unknown condition %q", cond.tag)
    			}
    			if impl.Usage().Prefix {
    				return false, fmt.Errorf("condition %q requires a suffix", cond.tag)
    			}
    		}
    		active, err := impl.Eval(s, suffix)
    
    		if err != nil {
    			return false, fmt.Errorf("evaluating condition %q: %w", cond.tag, err)
    		}
    		if active != cond.want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 01:16:19 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/embedding_pipelining.mlir

        %cst = "tf.Const"() {value = dense<1> : tensor<i1>} : () -> tensor<i1>
        %0 = "tf.While"(%cst) {body = @while_body, cond = @while_cond, is_stateless = false} : (tensor<i1>) -> (tensor<i1>)
        return
      }
      func.func private @while_body(%arg0: tensor<i1>) -> (tensor<i1>) {
        // metadata ops
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 33.1K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/controlplane/manifests_test.go

    				"--leader-elect=true",
    				"--kubeconfig=" + filepath.Join(kubeadmconstants.KubernetesDir, "scheduler.conf"),
    				"--authentication-kubeconfig=" + filepath.Join(kubeadmconstants.KubernetesDir, "scheduler.conf"),
    				"--authorization-kubeconfig=" + filepath.Join(kubeadmconstants.KubernetesDir, "scheduler.conf"),
    			},
    		},
    	}
    
    	for _, rt := range tests {
    		t.Run(rt.name, func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 14:43:47 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentReplacementIntegrationTest.groovy

            settingsFile << 'rootProject.name = "test"'
            buildFile << """
                configurations { conf }
                repositories {
                    maven { url "${mavenRepo.uri}" }
                }
                task resolvedFiles {
                    dependsOn 'dependencies'
                    def files = configurations.conf
    
                    doLast {
                        println "resolved files=" + files*.name.toSorted()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/conditions.go

    		// for more information
    		if cond.error != nil {
    			existingConditions = setter(existingConditions, metav1.Condition{
    				Type:               k,
    				Status:             kstatus.InvertStatus(cond.status),
    				ObservedGeneration: generation,
    				LastTransitionTime: metav1.Now(),
    				Reason:             cond.error.Reason,
    				Message:            cond.error.Message,
    			})
    		} else {
    			status := cond.status
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 13:05:41 UTC 2024
    - 14.4K bytes
    - Viewed (0)
Back to top