Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,732 for END (0.04 sec)

  1. src/cmd/trace/jsontrace.go

    			bStart = b.Start.Time()
    		}
    		if a.Start != b.Start {
    			return cmp.Compare(aStart, bStart)
    		}
    		// Break ties with the end time.
    		aEnd, bEnd := parsed.endTime(), parsed.endTime()
    		if a.End != nil {
    			aEnd = a.End.Time()
    		}
    		if b.End != nil {
    			bEnd = b.End.Time()
    		}
    		return cmp.Compare(aEnd, bEnd)
    	})
    }
    
    func defaultGenOpts() *genOpts {
    	return &genOpts{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/signing/maven-publish/kotlin/build.gradle.kts

    // tag::versions-resolved[]
    }
    // end::versions-resolved[]
    // end::pom-customization[]
    
    // tag::sign-publication[]
    signing {
        sign(publishing.publications["mavenJava"])
    }
    // end::sign-publication[]
    
    tasks.javadoc {
        if (JavaVersion.current().isJava9Compatible) {
            (options as StandardJavadocDocletOptions).addBooleanOption("html5", true)
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_list_bad_import.txt

    ! go list -f '{{if .Error}}error{{end}} {{if .Incomplete}}incomplete{{end}}' example.com/notfound
    stderr 'no required module provides package example.com/notfound; to add it:\n\tgo get example.com/notfound'
    ! stdout error
    ! stdout incomplete
    
    # ...but listing with -e should succeed.
    go list -e -f '{{if .Error}}error{{end}} {{if .Incomplete}}incomplete{{end}}' example.com/notfound
    stdout error
    stdout incomplete
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 06 18:54:25 UTC 2021
    - 2.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/kotlinDsl/noAccessors/kotlin/build.gradle.kts

    apply(plugin = "java-library")
    
    // end::project-extension[]
    // end::tasks[]
    // end::project-container-extension[]
    dependencies {
        "api"("junit:junit:4.13")
        "implementation"("junit:junit:4.13")
        "testImplementation"("junit:junit:4.13")
    }
    
    configurations {
        "implementation" {
            resolutionStrategy.failOnVersionConflict()
        }
    }
    // end::dependencies[]
    
    // tag::project-extension[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1K bytes
    - Viewed (0)
  5. src/go/doc/testdata/template.txt

    	{{node .Decl $.FSet}}
    
    {{end}}{{end}}{{end}}{{/*
    
    */}}{{with .Bugs}}
    BUGS .Bugs is now deprecated, please use .Notes instead
    {{range .}}{{indent "\t" .}}
    {{end}}{{end}}{{with .Notes}}{{range $marker, $content := .}}
    {{$marker}}S
    {{range $content}}{{$marker}}({{.UID}}){{indent "\t" .Body}}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.1K bytes
    - Viewed (0)
  6. manifests/charts/istiod-remote/templates/serviceaccount.yaml

    apiVersion: v1
    kind: ServiceAccount
      {{- if .Values.global.imagePullSecrets }}
    imagePullSecrets:
      {{- range .Values.global.imagePullSecrets }}
      - name: {{ . }}
      {{- end }}
      {{- end }}
    metadata:
      name: istiod{{- if not (eq .Values.revision "") }}-{{ .Values.revision }}{{- end }}
      namespace: {{ .Values.global.istioNamespace }}
      labels:
        app: istiod
        release: {{ .Release.Name }}
      {{- if .Values.pilot.serviceAccountAnnotations }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 01:52:23 UTC 2024
    - 592 bytes
    - Viewed (0)
  7. manifests/charts/istiod-remote/templates/mutatingwebhook.yaml

        url: "{{ .injectionURL }}"
        {{- else }}
        service:
          name: istiod{{- if not (eq .revision "") }}-{{ .revision }}{{- end }}
          namespace: {{ .namespace }}
          path: "{{ .injectionPath }}"
          port: 443
        {{- end }}
        {{- if .caBundle }}
        caBundle: "{{ .caBundle }}"
        {{- end }}
      sideEffects: None
      rules:
      - operations: [ "CREATE" ]
        apiGroups: [""]
        apiVersions: ["v1"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  8. manifests/charts/istio-control/istio-discovery/templates/mutatingwebhook.yaml

        url: "{{ .injectionURL }}"
        {{- else }}
        service:
          name: istiod{{- if not (eq .revision "") }}-{{ .revision }}{{- end }}
          namespace: {{ .namespace }}
          path: "{{ .injectionPath }}"
          port: 443
        {{- end }}
        {{- if .caBundle }}
        caBundle: "{{ .caBundle }}"
        {{- end }}
      sideEffects: None
      rules:
      - operations: [ "CREATE" ]
        apiGroups: [""]
        apiVersions: ["v1"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/java/basic/groovy/build.gradle

    java {
        toolchain {
            languageVersion = JavaLanguageVersion.of(17)
        }
    }
    // end::java-extension[]
    
    version = '1.2.1'
    // end::apply-java-plugin[]
    
    // tag::java-dependency-mgmt[]
    repositories {
        mavenCentral()
    }
    
    dependencies {
        implementation 'org.hibernate:hibernate-core:3.6.7.Final'
    }
    // end::java-dependency-mgmt[]
    
    // tag::java-basic-test-config[]
    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  10. manifests/charts/istio-control/istio-discovery/templates/configmap.yaml

          metrics:
          {{ if $prom }}- prometheus{{ end }}
          {{ if and $sdMetrics $sdLogs }}- stackdriver{{ end }}
        {{- end }}
        {{- if and $sdMetrics $sdLogs }}
          accessLogging:
          - stackdriver
        {{- end }}
      {{- end }}
    
        defaultConfig:
          {{- if .Values.global.meshID }}
          meshId: "{{ .Values.global.meshID }}"
          {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 4.9K bytes
    - Viewed (0)
Back to top