Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 582 for 0010 (0.12 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/gateway-addresses.yaml

      - value: 1200:0000:AB00:1234:0000:2552:7777:1313
      - value: 21DA:D3:0:2F3B:2AA:FF:FE28:9C5A
      - value: "2001:db8:3c4d:15:0:d234:3eee::"
      - value: "1234::"
      - value: "1.1.1.1"
      - value: "1.2.3.4"
      - value: "0.0.0.0"
      - value: "9.255.255.255"
      - value: "11.0.0.0"
      - type: IPAddress
        value: "255.255.255.255"
      - type: "Hostname"
        value: "example.com"
      listeners:
      - protocol: HTTP
        port: 80
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 631 bytes
    - Viewed (0)
  2. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/junit/result/JUnitXmlResultWriterMergeRerunSpec.groovy

                }
            }
    
            then:
            getXml(testClass) == """<?xml version="1.0" encoding="UTF-8"?>
    <testsuite name="com.Flaky" tests="4" skipped="0" failures="0" errors="0" timestamp="1970-01-01T00:00:00" hostname="localhost" time="1.0">
      <properties/>
      <testcase name="m1" classname="com.Flaky" time="2.0">
        <flakyFailure message="m1-message-1" type="ExceptionType">
          <stackTrace>m1-stackTrace-1</stackTrace>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:49:01 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  3. pkg/proxy/ipvs/util/ipvs_linux_test.go

    				Flags:         0,
    				Timeout:       0,
    				Netmask:       0xffffffff,
    				AddressFamily: unix.AF_INET,
    				Address:       netutils.ParseIPSloppy("0.0.0.0"),
    				PEName:        "",
    			},
    			VirtualServer{
    				Address:   netutils.ParseIPSloppy("0.0.0.0"),
    				Protocol:  "TCP",
    				Port:      80,
    				Scheduler: "",
    				Flags:     0,
    				Timeout:   0,
    			},
    		},
    		{
    			libipvs.Service{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 27 16:37:50 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  4. tests/integration/telemetry/api/istioctl_metrics_test.go

    	}
    	totalRPS, fErr := strconv.ParseFloat(fields[1], 32)
    	if fErr != nil {
    		t.Logf("Expected column 2 to show totalRPS, got %#v", fields)
    		return fErr
    	}
    	if totalRPS <= 0.001 {
    		t.Logf("Expected column 2 to show totalRPS more than 0.001, got %#v", fields)
    		return errors.New("unexpected output (incorrect RPS)")
    	}
    	return nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. docs/fr/docs/tutorial/debugging.md

    </div>
    
    alors la variable interne `__name__` de votre fichier, créée automatiquement par Python, aura pour valeur la chaîne de caractères `"__main__"`.
    
    Ainsi, la section :
    
    ```Python
        uvicorn.run(app, host="0.0.0.0", port=8000)
    ```
    
    va s'exécuter.
    
    ---
    
    Cela ne se produira pas si vous importez ce module (fichier).
    
    Par exemple, si vous avez un autre fichier `importer.py` qui contient :
    
    ```Python
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Mar 06 16:26:49 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  6. src/os/wait6_freebsd_386.go

    	// freebsd32_wait6_args{ idtype, id1, id2, status, options, wrusage, info }
    	_, _, errno = syscall.Syscall9(syscall.SYS_WAIT6, uintptr(idtype), uintptr(id), 0, uintptr(unsafe.Pointer(&status)), uintptr(options), 0, 0, 0, 0)
    	return status, errno
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 13 21:25:45 UTC 2022
    - 544 bytes
    - Viewed (0)
  7. pkg/ctrlz/assets/static/css/fonts.css

      unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
    }
    /* latin */
    @font-face {
      font-family: 'Roboto';
      font-style: normal;
      font-weight: 400;
      src: local('Roboto'), local('Roboto-Regular'), url(https://fonts.gstatic.com/s/roboto/v19/KFOmCnqEu92Fr1Mu4mxKKTU1Kg.woff2) format('woff2');
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 27.6K bytes
    - Viewed (0)
  8. src/syscall/syscall_illumos.go

    //go:linkname procFlock libc_flock
    
    var procFlock libcFunc
    
    func Flock(fd int, how int) error {
    	_, _, errno := sysvicall6(uintptr(unsafe.Pointer(&procFlock)), 2, uintptr(fd), uintptr(how), 0, 0, 0, 0)
    	if errno != 0 {
    		return errno
    	}
    	return nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 15 21:07:18 UTC 2022
    - 613 bytes
    - Viewed (0)
  9. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/junit/result/TestReportDataCollectorSpec.groovy

            def failure2 = org.gradle.api.tasks.testing.TestFailure.fromTestFrameworkFailure(new IOException("failure2"))
            def result = new DefaultTestResult(SUCCESS, 0, 0, 1, 0, 1, [failure1, failure2])
    
            when:
            collector.beforeTest(test)
            collector.afterTest(test, result)
    
            then:
            def failures = results["FooTest"].results[0].failures
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/nodeports/node_ports_test.go

    			name:             "first tcp port conflict due to 0.0.0.0 hostIP",
    			wantFilterStatus: framework.NewStatus(framework.Unschedulable, ErrReason),
    		},
    		{
    			pod: newPod("m1", "TCP/10.0.10.10/8001", "TCP/0.0.0.0/8001"),
    			nodeInfo: framework.NewNodeInfo(
    				newPod("m1", "TCP/127.0.0.1/8001")),
    			name:             "TCP hostPort conflict due to 0.0.0.0 hostIP",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 19 11:02:11 UTC 2023
    - 10.1K bytes
    - Viewed (0)
Back to top