Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 199 for 9$ (0.07 sec)

  1. src/os/exec.go

    	//
    	// On Unix and Plan 9, Release sets p.Pid = -1. This is the only part of the
    	// Process API that is not thread-safe, but it can't be changed now.
    	//
    	// On Windows, Release does _not_ modify p.Pid.
    	//
    	// On Windows, Wait calls Release after successfully waiting to
    	// proactively clean up resources.
    	//
    	// On Unix and Plan 9, Wait also proactively cleans up resources, but
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/networking/v1/types.go

    	// ---
    	// The regex it matches is (dns1123SubdomainFmt/)?(qualifiedNameFmt)
    	// +optional
    	// +kubebuilder:validation:Required
    	// +kubebuilder:validation:Pattern=`^([a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*/)?(([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9])$`
    	// +kubebuilder:validation:MaxLength=316
    	Error *string `json:"error,omitempty" protobuf:"bytes,3,opt,name=error"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  3. src/crypto/tls/testdata/Client-TLSv13-ClientCert-ECDSA-RSA

    00000100  69 88 5d 8e a4 fa 02 b0  6f f4 0e 38 cc 95 12 e2  |i.].....o..8....|
    00000110  f1 e3 47 89 a6 1d 80 26  cb 23 6e f3 83 1c e4 85  |..G....&.#n.....|
    00000120  7b 1a 4d 12 c8 bf ff 07  39 a9 4e 4e d7 45 35 23  |{.M.....9.NN.E5#|
    00000130  9b f9 59 6d a5 b0 49 1b  5f e7 42 62 17 00 1e 57  |..Ym..I._.Bb...W|
    00000140  53 c5 22 fb 05 89 fd fe  5d de 71 e8 26 fd 6d e3  |S.".....].q.&.m.|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  4. manifests/addons/dashboards/ztunnel-dashboard.gen.json

             "type": "timeseries"
          },
          {
             "collapsed": false,
             "gridPos": {
                "h": 1,
                "w": 24,
                "x": 0,
                "y": 9
             },
             "id": 5,
             "panels": [ ],
             "title": "Network",
             "type": "row"
          },
          {
             "datasource": {
                "type": "datasource",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  5. manifests/addons/dashboards/lib/output.json

                      "showPoints": "never"
                   }
                }
             },
             "gridPos": {
                "h": 8,
                "w": 8,
                "x": 0,
                "y": 9
             },
             "id": 5,
             "interval": "1m",
             "options": {
                "legend": {
                   "calcs": [
                      "lastNotNull",
                      "max"
                   ],
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  6. src/syscall/mksyscall.pl

    	}
    	if(@args <= 3) {
    		while(@args < 3) {
    			push @args, "0";
    		}
    	} elsif(@args <= 6) {
    		$asm .= "6";
    		while(@args < 6) {
    			push @args, "0";
    		}
    	} elsif(@args <= 9) {
    		$asm .= "9";
    		while(@args < 9) {
    			push @args, "0";
    		}
    	} else {
    		print STDERR "$ARGV:$.: too many arguments to system call\n";
    	}
    
    	if ($darwin || ($openbsd && $libc)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:15:02 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ProjectExtensions.kt

     *
     * If no extension is found, configures a project convention if available.
     * Note, that the concept of conventions is deprecated and scheduled for
     * removal in Gradle 9.
     *
     * @param T the project extension type.
     * @param configuration the configuration block.
     * @see [org.gradle.api.plugins.ExtensionAware]
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 09:50:04 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  8. src/runtime/string.go

    	if s == "" {
    		return 0, false
    	}
    
    	neg := false
    	if s[0] == '-' {
    		neg = true
    		s = s[1:]
    	}
    
    	un := uint64(0)
    	for i := 0; i < len(s); i++ {
    		c := s[i]
    		if c < '0' || c > '9' {
    			return 0, false
    		}
    		if un > maxUint64/10 {
    			// overflow
    			return 0, false
    		}
    		un *= 10
    		un1 := un + uint64(c) - '0'
    		if un1 < un {
    			// overflow
    			return 0, false
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/testng/TestNGTestClassProcessorTest.groovy

            then: 1 * processor.started({ it.id == 9 && it.name == 'test 2' && it.className == null }, { it.parentId == 6 })
            then: 1 * processor.started({ it.id == 10 && it.name == 'ok' && it.className == ATestNGClass.name }, { it.parentId == 9 })
            then: 1 * processor.completed(10, { it.resultType == ResultType.SUCCESS })
            then: 1 * processor.completed(9, { it.resultType == null })
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 18 12:30:10 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/javadoc/JavadocIntegrationTest.groovy

        @Rule
        TestResources testResources = new TestResources(temporaryFolder)
    
        @Issue("GRADLE-1563")
        @Requires(UnitTestPreconditions.Jdk8OrEarlier)
        // JDK 9 requires an @Deprecated annotation that breaks this same test on Java 7 on Windows.
        def handlesTagsAndTaglets() {
            when:
            run("javadoc")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 06:04:19 UTC 2024
    - 21.1K bytes
    - Viewed (0)
Back to top