Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 972 for retract (0.14 sec)

  1. src/cmd/go/internal/list/list.go

    The -retracted flag causes list to report information about retracted
    module versions. When -retracted is used with -f or -json, the Retracted
    field will be set to a string explaining why the version was retracted.
    The string is taken from comments on the retract directive in the
    module's go.mod file. When -retracted is used with -versions, retracted
    versions are listed together with unretracted versions. The -retracted
    flag may be used with or without -m.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 16:56:39 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  2. pilot/test/xdstest/extract.go

    Xiaopeng Han <******@****.***> 1703025762 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 19 22:42:42 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/managedfields/extract.go

    HaoJie Liu <******@****.***> 1657595835 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 12 03:17:15 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-groovy/src/main/java/org/gradle/model/dsl/internal/transform/ModelBlockTransformer.java

            this.scriptSourceDescription = scriptSourceDescription;
            this.location = location;
        }
    
        /*
            TODO change this so that we extract all the information at compile time.
    
            At the moment we use the transform to:
    
            1. validate/restrict the syntax
            2. transform rules into something more robust (e.g. foo.bar.baz {} into configure("foo.bar.baz", {})) - no dynamic propertyMissing() nonsense
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  5. .github/workflows/extract-unit-test-split.jq

    Stefan Wolf <******@****.***> 1633938695 +0200
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 11 08:08:26 UTC 2021
    - 171 bytes
    - Viewed (0)
  6. releasenotes/notes/restrict-istio-cni-node-daemonset.yaml

    Wambugu “Innocent” Kironji <******@****.***> 1675374770 -0500
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 02 21:52:50 UTC 2023
    - 229 bytes
    - Viewed (0)
  7. platforms/core-configuration/base-services-groovy/src/main/java/org/gradle/groovy/scripts/internal/RestrictiveCodeVisitor.java

            restrict(statement);
        }
    
        @Override
        public void visitForLoop(ForStatement forLoop) {
            restrict(forLoop);
        }
    
        @Override
        public void visitWhileLoop(WhileStatement loop) {
            restrict(loop);
        }
    
        @Override
        public void visitDoWhileLoop(DoWhileStatement loop) {
            restrict(loop);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 10:00:26 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  8. docs/sts/keycloak.md

      -d "grant_type=client_credentials" \
      "http://localhost:8080/auth/realms/{realm}/protocol/openid-connect/token"
    ```
    
    The result will be a JSON document. To invoke the API you need to extract the value of the access_token property. You can then invoke the API by including the value in the Authorization header of requests to the API.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 8.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/binding/DefaultStructBindingsStoreTest.groovy

        }
    
    
        def extract(Class<?> type, Class<?> delegateType = null) {
            return extract(type, [], delegateType)
        }
        def extract(Class<?> type, List<Class<?>> viewTypes, Class<?> delegateType = null) {
            return bindingStore.getBindings(
                ModelType.of(type),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 26.8K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/DefaultModelSchemaExtractorTest.groovy

            C1 getC();
    
            D1 getD();
        }
    
        def "can extract incestuous nest"() {
            expect:
            extract(type).getProperty("a").type == extract(A1).type
            extract(type).getProperty("b").type == extract(B1).type
            extract(type).getProperty("c").type == extract(C1).type
            extract(type).getProperty("d").type == extract(D1).type
    
            where:
            type << [A1, B1, C1, D1]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 29.9K bytes
    - Viewed (0)
Back to top