Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,827 for augment (0.14 sec)

  1. src/main/java/jcifs/smb/SmbFile.java

     * <td>
     * URLs that represent servers, shares, or directories require a trailing slash '/'.
     * </td>
     * </tr>
     *
     * </table>
     * 
     * <p>
     * A second constructor argument may be specified to augment the URL
     * for better programmatic control when processing many files under
     * a common base. This is slightly different from the corresponding
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  2. cmd/kubeadm/app/apis/kubeadm/argument.go

    limitations under the License.
    */
    
    package kubeadm
    
    // GetArgValue traverses an argument slice backwards and returns the value
    // of the given argument name and the index where it was found.
    // If the argument does not exist an empty string and -1 are returned.
    // startIdx defines where the iteration starts. If startIdx is a negative
    // value or larger than the size of the argument slice the iteration
    // will start from the last element.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 16 10:27:05 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Sets.java

          collection = ((Multiset<?>) collection).elementSet();
        }
        /*
         * AbstractSet.removeAll(List) has quadratic behavior if the list size
         * is just more than the set's size.  We augment the test by
         * assuming that sets have fast contains() performance, and other
         * collections don't.  See
         * http://code.google.com/p/guava-libraries/issues/detail?id=1013
         */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  4. src/cmd/link/internal/sym/segment.go

    // THE SOFTWARE.
    
    package sym
    
    // Terrible but standard terminology.
    // A segment describes a block of file to load into memory.
    // A section further describes the pieces of that block for
    // use in debuggers and such.
    
    type Segment struct {
    	Rwx      uint8  // permission as usual unix bits (5 = r-x etc)
    	Vaddr    uint64 // virtual address
    	Length   uint64 // length in memory
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 16 05:32:52 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/SmbFile.java

     * (presumably known to be a master
     * browser) for the server list in workgroup <code>MYGROUP</code>.
     * </td></tr>
     *
     * </table>
     * 
     * <p>A second constructor argument may be specified to augment the URL
     * for better programmatic control when processing many files under
     * a common base. This is slightly different from the corresponding
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/Sets.java

          collection = ((Multiset<?>) collection).elementSet();
        }
        /*
         * AbstractSet.removeAll(List) has quadratic behavior if the list size
         * is just more than the set's size.  We augment the test by
         * assuming that sets have fast contains() performance, and other
         * collections don't.  See
         * http://code.google.com/p/guava-libraries/issues/detail?id=1013
         */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 78.8K bytes
    - Viewed (0)
  7. platforms/core-runtime/instrumentation-agent/src/main/java/org/gradle/instrumentation/agent/Agent.java

     * limitations under the License.
     */
    
    package org.gradle.instrumentation.agent;
    
    import java.lang.instrument.ClassFileTransformer;
    import java.lang.instrument.Instrumentation;
    
    /**
     * An entry point for the on-the-fly bytecode instrumentation agent.
     */
    public class Agent {
        private static volatile Instrumentation instrumentation;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. pkg/envoy/agent.go

    		} else {
    			log.Infof("Envoy exited normally")
    		}
    
    	case <-ctx.Done():
    		a.terminate()
    		log.Info("Agent has successfully terminated")
    	}
    }
    
    func (a *Agent) DisableDraining() {
    	a.skipDrain.Store(true)
    }
    
    func (a *Agent) DrainNow() {
    	log.Infof("Agent draining proxy")
    	err := a.proxy.Drain(true)
    	if err != nil {
    		log.Warnf("Error in invoking drain listeners endpoint: %v", err)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 24 16:04:22 UTC 2024
    - 9K bytes
    - Viewed (0)
  9. cluster/addons/metadata-agent/stackdriver/metadata-agent.yaml

          app: metadata-agent
      template:
        metadata:
          labels:
            app: metadata-agent
        spec:
          securityContext:
            seccompProfile:
              type: RuntimeDefault
          serviceAccountName: metadata-agent
          priorityClassName: system-node-critical
          nodeSelector:
            kubernetes.io/os: linux
          containers:
          - image: gcr.io/stackdriver-agents/stackdriver-metadata-agent:0.2-0.0.21-1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 13 07:45:36 UTC 2020
    - 3.5K bytes
    - Viewed (0)
  10. architecture/security/istio-agent.md

    # Istio Agent
    
    This document describes the internal architecture of Istio agent.
    
    ## High Level overview
    
    ![High Level overview](docs/overview.svg)
    
    At a high level, the Istio agent acts as an intermediate proxy between Istiod and Envoy. This is done
    at two levels. For distributing workload certificates, Envoy will send [SDS](https://www.envoyproxy.io/docs/envoy/latest/configuration/security/secret)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 22 16:45:50 UTC 2023
    - 7.2K bytes
    - Viewed (0)
Back to top