Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 2,732 for END (0.16 sec)

  1. src/cmd/compile/internal/ssa/flagalloc.go

    			end[b.ID] = nil
    			continue
    		}
    		for _, v := range b.ControlValues() {
    			if v.Type.IsFlags() && end[b.ID] != v {
    				end[b.ID] = nil
    			}
    		}
    	}
    
    	// Compute which flags values will need to be spilled.
    	spill := map[ID]bool{}
    	for _, b := range f.Blocks {
    		var flag *Value
    		if len(b.Preds) > 0 {
    			flag = end[b.Preds[0].b.ID]
    		}
    		for _, v := range b.Values {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:20 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/tasks/incrementalTask/kotlin/build.gradle.kts

        }
    }
    // end::updated-inputs[]
    
    // tag::removed-input[]
    tasks.register<Delete>("removeInput") {
        delete("inputs/3.txt")
    }
    // end::removed-input[]
    
    // tag::removed-output[]
    tasks.register<Delete>("removeOutput") {
        delete(layout.buildDirectory.file("outputs/1.txt"))
    }
    // end::removed-output[]
    
    // tag::reverse[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. src/go/doc/comment/testdata/blank.txt

    -- input --
    	$
    	Blank line at start and end.
    	$
    -- gofmt --
    Blank line at start and end.
    -- text --
    Blank line at start and end.
    -- markdown --
    Blank line at start and end.
    -- html --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:40 UTC 2022
    - 216 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/dependencyManagement/artifactTransforms-minify/kotlin/build.gradle.kts

            closeEntry()
    // tag::artifact-transform-minify[]
        }
    }
    // end::artifact-transform-minify[]
    
    // tag::artifact-transform-registration[]
    // tag::artifact-transform-attribute-setup[]
    val artifactType = Attribute.of("artifactType", String::class.java)
    val minified = Attribute.of("minified", Boolean::class.javaObjectType)
    // end::artifact-transform-attribute-setup[]
    val keepPatterns = mapOf(
        "guava" to setOf(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/tasks/incrementalBuild-customTaskClass/kotlin/build.gradle.kts

    }
    // end::custom-class-runtime-api[]
    
    // tag::inferred-task-dep-via-outputs[]
    tasks.register<Zip>("packageFiles") {
        from(processTemplates.map { it.outputDir })
    }
    // end::inferred-task-dep-via-outputs[]
    
    // tag::inferred-task-dep-via-task[]
    tasks.register<Zip>("packageFiles2") {
        from(processTemplates)
    }
    // end::inferred-task-dep-via-task[]
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  6. pkg/kube/inject/openshift.go

    			return Block{}, ErrBlockSlashBadFormat
    		}
    		return Block{Start: start, End: start + size - 1}, nil
    	}
    
    	var start, end uint32
    	n, err := fmt.Sscanf(in, "%d-%d", &start, &end)
    	if err != nil {
    		return Block{}, err
    	}
    	if n != 2 {
    		return Block{}, ErrBlockDashBadFormat
    	}
    	return Block{Start: start, End: end}, nil
    }
    
    func (b Block) String() string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 25 19:10:42 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  7. pkg/test/framework/components/echo/kube/templates/vm_deployment.yaml

    {{- else }}
                 --port \
    {{- end }}
                 "{{ $p.Port }}" \
    {{- if $p.ServerFirst }}
                 --server-first={{ $p.Port }} \
    {{- end }}
    {{- if $p.TLS }}
                 --tls={{ $p.Port }} \
    {{- end }}
    {{- if $p.InstanceIP }}
                 --bind-ip={{ $p.Port }} \
    {{- end }}
    {{- if $p.LocalhostIP }}
                 --bind-localhost={{ $p.Port }} \
    {{- end }}
    {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 8K bytes
    - Viewed (0)
  8. src/internal/diff/diff.go

    		// have an empty match: start.x==end.x and start.y==end.y.
    		start := m
    		for start.x > done.x && start.y > done.y && x[start.x-1] == y[start.y-1] {
    			start.x--
    			start.y--
    		}
    		end := m
    		for end.x < len(x) && end.y < len(y) && x[end.x] == y[end.y] {
    			end.x++
    			end.y++
    		}
    
    		// Emit the mismatched lines before start into this chunk.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 14:13:04 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/java-platform/quickstart/kotlin/build.gradle.kts

    // tag::use-plugin[]
    plugins {
        `java-platform`
    }
    // end::use-plugin[]
    
    
    // tag::repo[]
    repositories {
        mavenCentral()
    }
    // end::repo[]
    
    // tag::constraints[]
    dependencies {
        constraints {
            api("commons-httpclient:commons-httpclient:3.1")
            runtime("org.postgresql:postgresql:42.2.5")
        }
    }
    // end::constraints[]
    
    // tag::platform[]
    // tag::allow-dependencies[]
    javaPlatform {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 554 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/dependencyManagement/catalogs-settings/groovy/build.gradle

        alias(libs.plugins.versions)
    }
    // end::use_plugin[]
    
    // tag::simple_dependency_use[]
    dependencies {
        implementation(libs.groovy.core)
    }
    // end::simple_dependency_use[]
    
    // tag::use_version[]
    checkstyle {
        // will use the version declared in the catalog
        toolVersion = libs.versions.checkstyle.get()
    }
    // end::use_version[]
    
    // tag::use_catalog[]
    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 11:03:14 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top