Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 969 for cpuset (0.18 sec)

  1. cni/pkg/ipset/ipset.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package ipset
    
    import (
    	"errors"
    	"fmt"
    	"net/netip"
    )
    
    type IPSet struct {
    	V4Name string
    	V6Name string
    	Prefix string
    	Deps   NetlinkIpsetDeps
    }
    
    const (
    	V4Name = "%s-v4"
    	V6Name = "%s-v6"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 22:24:38 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. pkg/proxy/ipvs/ipset/ipset.go

    	ListSets() ([]string, error)
    	// GetVersion returns the "X.Y" version string for ipset.
    	GetVersion() (string, error)
    }
    
    // IPSetCmd represents the ipset util. We use ipset command for ipset execute.
    const IPSetCmd = "ipset"
    
    // EntryMemberPattern is the regular expression pattern of ipset member list.
    // The raw output of ipset command `ipset list {set}` is similar to,
    // Name: foobar
    // Type: hash:ip,port
    // Revision: 2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  3. maven-model-builder/src/main/java/org/apache/maven/model/resolution/InvalidRepositoryException.java

         *
         * @param message The detail message, may be {@code null}.
         * @param repository The repository that caused the error, may be {@code null}.
         * @param cause The cause, may be {@code null}.
         */
        public InvalidRepositoryException(String message, Repository repository, Throwable cause) {
            super(message, cause);
            this.repository = repository;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  4. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/exceptions/DefaultMultiCauseException.java

            Throwable cause = causes.get(0);
            printWriter.print("Caused by: ");
            cause.printStackTrace(printWriter);
        }
    
        private void printMultiCauseStackTrace(PrintWriter printWriter) {
            for (int i = 0; i < causes.size(); i++) {
                Throwable cause = causes.get(i);
                printWriter.format("Cause %s: ", i + 1);
                cause.printStackTrace(printWriter);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. samples/ambient-argo/istio/control-plane-appset.yaml

    Mitch Connors <******@****.***> 1699062890 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 1006 bytes
    - Viewed (0)
  6. testing/performance/docs/performance-bisect.md

            runner.targetVersions = ['2.14']
            runner.useDaemon = true
    ...
            where:
            // source file change causes a single project, single source set, single file to be recompiled.
            // header file change causes a single project, two source sets, some files to be recompiled.
            // recompile all sources causes all projects, all source sets, all files to be recompiled.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/main/java/org/gradle/internal/problems/failure/FailurePrinter.java

                List<Failure> causes = failure.getCauses();
                if (causes.size() == 1) {
                    printRecursively("Caused by: ", prefix, failure, causes.get(0));
                } else {
                    for (int i = 0; i < causes.size(); i++) {
                        printRecursively(String.format("Cause %s: ", i + 1), prefix, failure, causes.get(i));
                    }
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 23:45:41 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/logging/FullExceptionFormatterTest.groovy

        java.lang.Exception: ouch
    """
        }
    
        def "optionally shows causes"() {
            testLogging.getShowCauses() >> true
            def cause = new RuntimeException("oops")
            def exception = new Exception("ouch", cause)
    
            expect:
            formatter.format(testDescriptor, [exception]) == """\
        java.lang.Exception: ouch
    
            Caused by:
            java.lang.RuntimeException: oops
    """
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  9. platforms/enterprise/enterprise-plugin-performance/src/templates/root/build.gradle

     */
    
    // We want to double check that a build failure is
    // only caused by failing test executions
    gradle.buildFinished { result ->
        buildDir.mkdirs()
        if(result.failure) {
            def unexpectedFailure = (result.failure instanceof org.gradle.execution.MultipleBuildFailures && result.failure.causes.every { cause ->
                def failureMessage = cause?.cause?.cause?.message
                !failureMessage?.contains("There were failing tests")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:38:06 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/util/concurrent/TestThread.java

      }
    
      /**
       * Asserts that a prior call that had caused this thread to block or wait has since returned
       * normally.
       */
      public void assertPriorCallReturns(@Nullable String methodName) throws Exception {
        assertEquals(null, getResponse(methodName).getResult());
      }
    
      /**
       * Asserts that a prior call that had caused this thread to block or wait has since returned the
       * expected boolean value.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top