Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 50 for cont (0.05 sec)

  1. pkg/scheduler/internal/queue/scheduling_queue.go

    	// pod maximum backoff duration.
    	podMaxBackoffDuration time.Duration
    	// the maximum time a pod can stay in the unschedulablePods.
    	podMaxInUnschedulablePodsDuration time.Duration
    
    	cond sync.Cond
    
    	// inFlightPods holds the UID of all pods which have been popped out for which Done
    	// hasn't been called yet - in other words, all pods that are currently being
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  2. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildScriptBuilder.java

            TaskConfiguration conf = new TaskConfiguration(comment, taskName, taskType);
            block.add(conf);
            blockContentsBuilder.execute(conf.body);
            return conf;
        }
    
        /**
         * Configure an existing task within the given block.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 12:02:29 UTC 2023
    - 90K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfrt/tests/mlrt/while_to_map_fn.mlir

      // CHECK-NEXT: [[loop_counter:%.*]] = "tf.Const"
      %outputs_16 =  "tf.Const"() {device = "", value = dense<0> : tensor<i32>} : () -> tensor<i32>
      // CHECK-NEXT: [[max_iterations:%.*]] = "tf.Const"
      %outputs_18 =  "tf.Const"() {device = "", value = dense<16> : tensor<i32>} : () -> tensor<i32>
      %outputs_20 =  "tf.Const"() {device = "", value = dense<1> : tensor<i32>} : () -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 23 06:40:22 UTC 2024
    - 68.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/decode.go

    		}
    
    	case arg_cond_AllowALNV_Normal:
    		cond := (x >> 12) & (1<<4 - 1)
    		return Cond{uint8(cond), false}
    
    	case arg_conditional:
    		cond := x & (1<<4 - 1)
    		return Cond{uint8(cond), false}
    
    	case arg_cond_NotAllowALNV_Invert:
    		cond := (x >> 12) & (1<<4 - 1)
    		if (cond >> 1) == 7 {
    			return nil
    		}
    		return Cond{uint8(cond), true}
    
    	case arg_Cm:
    		CRm := (x >> 8) & (1<<4 - 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 76.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    ====
    [.multi-language-sample]
    =====
    .build.gradle.kts
    [source,kotlin]
    ----
    val conf by configurations.creating
    
    dependencies {
        conf("com.thing:foo:1.0")
        conf("org.example:bar:1.0")
    }
    
    tasks.register("filterDependencies") {
        val files: FileCollection = conf.incoming.artifactView {
            componentFilter {
                when(it) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  6. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishJavaIntegTest.groovy

        void "generated ivy descriptor includes configuration exclusions"() {
            def exclusion = { name -> "$name-group:$name-module" }
            def exclusions = { conf -> javaLibrary.parsedIvy.exclusions.findAll { it.conf == conf }.collect { it.org + ":" + it.module } }
    
            given:
            createBuildScripts("""
                configurations {
                    api.exclude(group: "api-group", module: "api-module")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 49.8K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformWithDependenciesIntegrationTest.groovy

            run(":resolveArtifacts")
    
            then:
            output.count("transform") == 3
            output.count("transform external test-1.2.jar") == 1
            output.count("transform local test2-1.5.thing using [test-1.2.jar.external]") == 1
            output.count("transform local test3-1.5.thing using [test-1.2.jar.external]") == 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 54.2K bytes
    - Viewed (0)
  8. pkg/controller/replicaset/replica_set_test.go

    		},
    		{
    			name:              "callLimit = count (all succeed)",
    			count:             10,
    			callLimit:         10,
    			fn:                fn,
    			expectedSuccesses: 10,
    			expectedErr:       nil,
    			expectedCallCnt:   10, // 1(first batch) + 2(2nd batch) + 4(3rd batch) + 3(4th batch) = 10
    		},
    		{
    			name:              "callLimit < count (some succeed)",
    			count:             10,
    			callLimit:         5,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
  9. src/cmd/cgo/out.go

    		fmt.Fprintf(fgo2, "var %s ", n.Mangle)
    		conf.Fprint(fgo2, fset, node)
    		if !*gccgo {
    			fmt.Fprintf(fgo2, " = (")
    			conf.Fprint(fgo2, fset, node)
    			fmt.Fprintf(fgo2, ")(unsafe.Pointer(&__cgo_%s))", n.C)
    		}
    		fmt.Fprintf(fgo2, "\n")
    	}
    	if *gccgo {
    		fmt.Fprintf(fc, "\n")
    	}
    
    	for _, key := range nameKeys(p.Name) {
    		n := p.Name[key]
    		if n.Const != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/syntax/parser.go

    	s := new(ForStmt)
    	s.pos = p.pos()
    
    	s.Init, s.Cond, s.Post = p.header(_For)
    	s.Body = p.blockStmt("for clause")
    
    	return s
    }
    
    func (p *parser) header(keyword token) (init SimpleStmt, cond Expr, post SimpleStmt) {
    	p.want(keyword)
    
    	if p.tok == _Lbrace {
    		if keyword == _If {
    			p.syntaxError("missing condition in if statement")
    			cond = p.badExpr()
    		}
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
Back to top