Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 125 for notFound (0.34 sec)

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

    -- $WORK/emptysub/example.com/join/@v/list --
    v1.1.0
    -- $WORK/emptysub/example.com/join/@v/v1.1.0.info --
    {"Version": "v1.1.0"}
    -- $WORK/notfound/example.com/join/subpkg/@v/list --
    v1.0.0-does-not-exist
    -- $WORK/notfound/example.com/join/@v/list --
    v1.1.0
    -- $WORK/notfound/example.com/join/@v/v1.1.0.info --
    {"Version": "v1.1.0"}
    -- $WORK/gatekeeper/example.com/join/subpkg/@v/list --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  2. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/use/resolve/internal/CompositePluginResolver.java

            this.repositories = repositories;
        }
    
        @Override
        public PluginResolutionResult resolve(PluginRequestInternal pluginRequest) {
            ImmutableList.Builder<PluginResolutionResult.NotFound> notFoundList = ImmutableList.builder();
            for (PluginResolver repository : repositories) {
                PluginResolutionResult result = repository.resolve(pluginRequest);
                if (result.isFound()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 20:19:43 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. samples/bookinfo/platform/kube/cleanup.sh

    ret=$?
    function cleanup() {
      rm -f "${OUTPUT}"
    }
    
    trap cleanup EXIT
    
    if [[ ${ret} -eq 0 ]];then
      cat "${OUTPUT}"
    else
      # ignore NotFound errors
      OUT2=$(grep -v NotFound "${OUTPUT}")
      if [[ -n ${OUT2} ]];then
        cat "${OUTPUT}"
        exit ${ret}
      fi
    fi
    
    # wait for 30 sec for bookinfo to clean up
    sleep 30
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 16:07:18 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/extensibility/ExtraPropertiesDynamicObjectAdapter.java

            }
            return DynamicInvokeResult.notFound();
        }
    
        @Override
        public DynamicInvokeResult trySetProperty(String name, @Nullable Object value) {
            if (extension.has(name)) {
                extension.set(name, value);
                return DynamicInvokeResult.found();
            }
            return DynamicInvokeResult.notFound();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 09 10:01:06 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. src/internal/bytealg/indexbyte_s390x.s

    // R2: &ret -- address to put index into
    TEXT indexbytebody<>(SB),NOSPLIT|NOFRAME,$0
    	CMPBEQ	R4, $0, notfound
    	MOVD	R3, R6          // store base for later
    	ADD	R3, R4, R8      // the address after the end of the string
    	//if the length is small, use loop; otherwise, use vector or srst search
    	CMPBGE	R4, $16, large
    
    residual:
    	CMPBEQ	R3, R8, notfound
    	MOVBZ	0(R3), R7
    	LA	1(R3), R3
    	CMPBNE	R7, R5, residual
    
    found:
    	SUB	R6, R3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 08 20:52:47 UTC 2018
    - 2.5K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/dependencies/DynamicAddDependencyMethods.java

            if (arguments.length == 0) {
                return DynamicInvokeResult.notFound();
            }
            Configuration configuration = configurationContainer.findByName(name);
            if (configuration == null) {
                return DynamicInvokeResult.notFound();
            }
    
            List<?> normalizedArgs = CollectionUtils.flattenCollections(arguments);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/testdata/invalid.yaml.golden

    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      annotations:
        internal.istio.io/parents: HTTPRoute/invalid-backendRef-notfound.default
        internal.istio.io/route-semantics: gateway
      creationTimestamp: null
      name: invalid-backendRef-notfound-0-istio-autogenerated-k8s-gateway
      namespace: default
    spec:
      gateways:
      - istio-system/gateway-istio-autogenerated-k8s-gateway-default
      hosts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 4K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/vendor_import.txt

    vend/x/invalid [vend/x/invalid/vendor/foo]
    vend/vendor/p []
    vend/vendor/q []
    vend/vendor/strings []
    vend/vendor/vend/dir1/dir2 []
    vend/x/vendor/p []
    vend/x/vendor/p/p [notfound]
    vend/x/vendor/r []
    -- vend/bad.go --
    package vend
    
    import _ "r"
    -- vend/dir1/dir1.go --
    package dir1
    -- vend/good.go --
    package vend
    
    import _ "p"
    -- vend/hello/hello.go --
    package main
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 22 21:14:01 UTC 2023
    - 2K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/metaobject/ConfigureDelegate.java

            return _original_owner;
        }
    
        protected DynamicInvokeResult _configure(String name, Object[] params) {
            return DynamicInvokeResult.notFound();
        }
    
        protected DynamicInvokeResult _configure(String name) {
            return DynamicInvokeResult.notFound();
        }
    
        @Nullable
        @Override
        public Object invokeMethod(String name, Object paramsObj) {
            Object[] params = (Object[]) paramsObj;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 17 11:25:34 UTC 2023
    - 4K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/build_vendor.txt

    package q
    -- vend/vendor/vend/dir1/dir2/dir2.go --
    package dir2
    -- vend/x/invalid/invalid.go --
    package invalid
    
    import "vend/x/invalid/vendor/foo"
    -- vend/x/vendor/p/p/p.go --
    package p
    
    import _ "notfound"
    -- vend/x/vendor/p/p.go --
    package p
    -- vend/x/vendor/r/r.go --
    package r
    -- vend/x/x.go --
    package x
    
    import _ "p"
    import _ "q"
    import _ "r"
    import _ "vend/dir1"      // not vendored
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 17 13:25:29 UTC 2020
    - 703 bytes
    - Viewed (0)
Back to top