Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 239 for intervention (0.24 sec)

  1. cmd/storage-errors.go

    var errMaxVersionsExceeded = StorageErr("maximum versions exceeded, please delete few versions to proceed")
    
    // errUnexpected - unexpected error, requires manual intervention.
    var errUnexpected = StorageErr("unexpected error, please report this issue at https://github.com/minio/minio/issues")
    
    // errCorruptedFormat - corrupted format.
    var errCorruptedFormat = StorageErr("corrupted format")
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/AndXServerMessageBlock.java

            dst[dstIndex++] = (byte)( byteCount & 0xFF );
            dst[dstIndex++] = (byte)(( byteCount >> 8 ) & 0xFF );
            dstIndex += byteCount;
    
            /* Normally, without intervention everything would batch
             * with everything else. If the below clause evaluates true
             * the andx command will not be written and therefore the
             * response will not read a batched command and therefore
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 11.3K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb1/AndXServerMessageBlock.java

            dst[ dstIndex++ ] = (byte) ( this.byteCount & 0xFF );
            dst[ dstIndex++ ] = (byte) ( ( this.byteCount >> 8 ) & 0xFF );
            dstIndex += this.byteCount;
    
            /*
             * Normally, without intervention everything would batch
             * with everything else. If the below clause evaluates true
             * the andx command will not be written and therefore the
             * response will not read a batched command and therefore
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Nov 28 10:56:27 UTC 2022
    - 14.3K bytes
    - Viewed (0)
  4. pkg/controller/cronjob/utils.go

    	// gone home, and someone comes in on tuesday AM and discovers
    	// the problem and restarts the controller, then all the hourly
    	// jobs, more than 80 of them for one hourly cronJob, should
    	// all start running with no further intervention (if the cronJob
    	// allows concurrency and late starts).
    	//
    	// However, if there is a bug somewhere, or incorrect clock
    	// on controller's server or apiservers (for setting creationTimestamp)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  5. pkg/controller/nodeipam/ipam/sync/sync.go

    		sync.kubeAPI.EmitNodeWarningEvent(node.Name, MismatchEvent,
    			"Node.Spec.PodCIDR != cloud alias (%v != %v)", node.Spec.PodCIDR, aliasRange)
    		// User intervention is required in this case, as this is most likely due
    		// to the user mucking around with their VM aliases on the side.
    	} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 07:50:01 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  6. docs/en/docs/deployment/concepts.md

    ### Run Automatically on Startup
    
    In general, you will probably want the server program (e.g. Uvicorn) to be started automatically on server startup, and without needing any **human intervention**, to have a process always running with your API (e.g. Uvicorn running your FastAPI app).
    
    ### Separate Program
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 18K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/Intersection.java

     *
     * @implSpec Remember that the order of the exclude specs must not be significant.
     */
    @NonNullApi
    public interface Intersection<L extends ExcludeSpec, R extends ExcludeSpec> {
        /**
         * Tests if this intersection applies to 2 given exclude specs (in any order).
         *
         * An intersection should apply if the given exclude specs are of the expected generic types on this interface,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 21:03:05 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. platforms/core-runtime/BYTECODE-INTERCEPTION-README.md

        Injected --> instrumentingClassTransform
        
    ```
    
    #### Dynamic Groovy interception
    
    Dynamic Groovy interception is a bit more complicated than Java interception, since types are resolved dynamically.
    Due to that interception happens in two stages:
    1. Bytecode transformation
    2. Runtime interception
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 09:22:58 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  9. tools/istio-clean-iptables/pkg/cmd/testdata/inbound-interception-mode.golden

    Eoin Fennessy <******@****.***> 1715615475 +0100
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 15:51:15 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/testdata/isolation.yaml.golden

    kind: VirtualService
    metadata:
      annotations:
        internal.istio.io/parents: HTTPRoute/attaches-to-abc-foo-example-com-with-hostname-intersection.gateway-conformance-infra
        internal.istio.io/route-semantics: gateway
      creationTimestamp: null
      name: attaches-to-abc-foo-example-com-with-hostname-intersection-0-istio-autogenerated-k8s-gateway
      namespace: gateway-conformance-infra
    spec:
      gateways:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top