Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 587 for admitted (0.17 sec)

  1. src/cmd/go/testdata/script/cover_build_simple.txt

    # First execute without GOCOVERDIR set...
    env GOCOVERDIR=
    exec ./example.exe normal
    stderr '^warning: GOCOVERDIR not set, no coverage data emitted'
    
    # ... then with GOCOVERDIR set.
    env GOCOVERDIR=data/normal
    exec ./example.exe normal
    ! stderr '^warning: GOCOVERDIR not set, no coverage data emitted'
    go tool covdata percent -i=data/normal
    stdout  'coverage:.*[1-9][0-9.]+%'
    
    # Program makes a direct call to os.Exit(0).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 11:50:58 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/mod/zip/zip.go

    	// That's probably not appropriate for error messages.
    	for i := range cf.Valid {
    		cf.Valid[i] = filepath.Join(dir, cf.Valid[i])
    	}
    	cf.Omitted = append(cf.Omitted, omitted...)
    	for i := range cf.Omitted {
    		cf.Omitted[i].Path = filepath.Join(dir, cf.Omitted[i].Path)
    	}
    	for i := range cf.Invalid {
    		cf.Invalid[i].Path = filepath.Join(dir, cf.Invalid[i].Path)
    	}
    	return cf, cf.Err()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 31K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1_openapi.json

    in a single admission evaluation.\n\nIfNeeded: the webhook will be called at least one additional time as part of the admission evaluation if the object being admitted is modified by other admission plugins after the initial webhook call. Webhooks that specify this option *must* be idempotent, able to process objects they previously admitted. Note: * the number of additional invocations is not guaranteed to be exactly one. * if additional invocations result in further modifications to the object,...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 388.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/rsc.io/markdown/inline.go

    	for _, c := range x.Inner {
    		c.PrintText(buf)
    	}
    }
    
    func (p *parseState) emit(i int) {
    	if p.emitted < i {
    		p.list = append(p.list, &Plain{p.s[p.emitted:i]})
    		p.emitted = i
    	}
    }
    
    func (p *parseState) skip(i int) {
    	p.emitted = i
    }
    
    func (p *parseState) inline(s string) []Inline {
    	s = trimSpaceTab(s)
    	// Scan text looking for inlines.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/ide/problems-api-usage/README.adoc

    
    ## Emitting a problem
    
    Problems can be emitted via an injected `Problems` service.
    Here's an example on how to report a problem from a plugin.
    
    ====
    include::sample[dir="groovy",files="reporters/standard-plugin/src/main/java/reporters/StandardPlugin.java[tags=problems-api-report]"]
    ====
    
    
    ## Receiving a problem report
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 08:50:13 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. docs/en/docs/how-to/separate-openapi-schemas.md

        # Code below omitted 👇
        ```
    
        <details>
        <summary>👀 Full file preview</summary>
    
        ```Python
        {!> ../../../docs_src/separate_openapi_schemas/tutorial001_py310.py!}
        ```
    
        </details>
    
    === "Python 3.9+"
    
        ```Python hl_lines="16"
        {!> ../../../docs_src/separate_openapi_schemas/tutorial001_py39.py[ln:1-17]!}
    
        # Code below omitted 👇
        ```
    
        <details>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Oct 17 05:59:11 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  7. okhttp-logging-interceptor/src/main/kotlin/okhttp3/logging/HttpLoggingInterceptor.kt

              logger.log("--> END ${request.method} (encoded body omitted)")
            } else if (requestBody.isDuplex()) {
              logger.log("--> END ${request.method} (duplex request body omitted)")
            } else if (requestBody.isOneShot()) {
              logger.log("--> END ${request.method} (one-shot body omitted)")
            } else {
              var buffer = Buffer()
              requestBody.writeTo(buffer)
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 09:14:38 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  8. maven-compat/src/main/java/org/apache/maven/artifact/resolver/DebugResolutionListener.java

        }
    
        public void omitForNearer(Artifact omitted, Artifact kept) {
            String omittedVersion = omitted.getVersion();
            String keptVersion = kept.getVersion();
    
            if (!Objects.equals(omittedVersion, keptVersion)) {
                logger.debug(indent + omitted + " (removed - nearer found: " + keptVersion + ")");
            }
        }
    
        public void omitForCycle(Artifact omitted) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.11.md

        * With this feature, users can config kube-addon-manager to whitelist those resources to fix this issue.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 328.4K bytes
    - Viewed (0)
  10. platforms/software/testing-base/src/integTest/groovy/org/gradle/testing/TestExecutionBuildOperationsIntegrationTest.groovy

        def "emitsBuildOperationsForJUnitTests"() {
            given:
            executer.withRepositoryMirrors()
    
            when:
            run "test"
    
            then: "test build operations are emitted in expected hierarchy"
            def rootTestOp = operations.first(ExecuteTestBuildOperationType)
            rootTestOp.details.testDescriptor.name.startsWith("Gradle Test Run :test")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.4K bytes
    - Viewed (0)
Back to top