Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 111 for tings (0.04 sec)

  1. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/services/LoggingServiceRegistry.java

        }
    
        /**
         * Creates a set of logging services to set up a new logging scope that does nothing by default. The methods on {@link LoggingManagerInternal} can be used to configure the
         * logging services do useful things.
         *
         * <p>Sets log level to {@link org.gradle.api.logging.LogLevel#LIFECYCLE}.</p>
         */
        public static LoggingServiceRegistry newNestedLogging() {
            return new NestedLogging();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  2. README.md

        period. The last release to remove non-`@Beta` APIs was Guava 21.0.) Even
        `@Deprecated` APIs will remain (again, unless they are `@Beta`). We have no
        plans to start removing things again, but officially, we're leaving our
        options open in case of surprises (like, say, a serious security problem).
    
    3.  Guava has one dependency that is needed for linkage at runtime:
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 31 17:43:52 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. guava/pom.xml

          </plugin>
          <plugin>
            <artifactId>maven-javadoc-plugin</artifactId>
            <configuration>
              <!-- Passing `-subpackages com.google.common` breaks things, so we explicitly exclude everything else instead. -->
              <!-- excludePackageNames requires specification of packages separately from "all subpackages".
                   https://issues.apache.org/jira/browse/MJAVADOC-584 -->
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 11 16:37:45 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  4. pkg/proxy/nftables/README.md

    anything else (including, in particular, packets destined for a pod IP) gets routed along
    the forward path.
    
    ## kube-proxy's use of nftables hooks
    
    Kube-proxy uses nftables for seven things:
    
      - Using DNAT to rewrite traffic from service IPs (cluster IPs, external IPs, load balancer
        IP, and NodePorts on node IPs) to the corresponding endpoint IPs.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 21 14:37:56 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. pkg/dns/server/name_table.go

    	for _, svc := range cfg.Node.SidecarScope.Services() {
    		svcAddress := svc.GetAddressForProxy(cfg.Node)
    		var addressList []string
    		hostName := svc.Hostname
    		if svcAddress != constants.UnspecifiedIP {
    			// Filter out things we cannot parse as IP. Generally this means CIDRs, as anything else
    			// should be caught in validation.
    			if !netutil.IsValidIPAddress(svcAddress) {
    				continue
    			}
    			addressList = append(addressList, svcAddress)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 07:19:38 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  6. src/internal/coverage/pods/pods.go

    // with an error if something went wrong during directory/file
    // reading.
    //
    // CollectPods skips over any file that is not related to coverage
    // (e.g. avoids looking at things that are not meta-data files or
    // counter-data files). CollectPods also skips over 'orphaned' counter
    // data files (e.g. counter data files for which we can't find the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  7. maven-core/src/site/apt/configuration-management.apt

     maven.home            (system,user,default=${user.home}/m2)
     maven.repo.local      (system,user,default=${maven.user.config.dir}/repository)
    
     We need to define what happens in the when things are not setup correctly
    
     o ~/.m2 directory does not exist
     o ~/.m2/maven.properties does not exist
     o if they once existed but now to do not exist
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  8. README.md

    - **Epic**. An epic represents a feature area for Istio as a whole. Epics are fairly broad in scope and are basically product-level things.
    Each issue is ultimately part of an epic.
    
    - **Milestone**. Each issue is assigned a milestone. This is 0.1, 0.2, ..., or 'Nebulous Future'. The milestone indicates when we
    think the issue should get addressed.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 15:28:59 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  9. hack/update-vendor-licenses.sh

    (cd "${KUBE_ROOT}" && \
      find vendor third_party -iname 'licen[sc]e*' -o -iname 'notice*' -o -iname 'copying*' | \
      grep -E 'third_party|forked' | \
      xargs tar -czf - | tar -C "${TMP_LICENSES_DIR}" -xzf -)
    
    # Leave things like OWNERS alone.
    rm -f "${LICENSES_DIR}/LICENSE"
    rm -rf "${LICENSES_DIR}/vendor"
    rm -rf "${LICENSES_DIR}/third_party"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:53 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. hack/ginkgo-e2e.sh

    fi
    
    # The --host setting is used only when providing --auth_config
    # If --kubeconfig is used, the host to use is retrieved from the .kubeconfig
    # file and the one provided with --host is ignored.
    # Add path for things like running kubectl binary.
    PATH=$(dirname "${e2e_test}"):"${PATH}"
    export PATH
    
    # Choose the program to execute and additional arguments for it.
    #
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 13:25:50 UTC 2024
    - 8.6K bytes
    - Viewed (0)
Back to top