Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 111 for 666F (0.06 sec)

  1. android/guava-tests/test/com/google/common/io/BaseEncodingTest.java

      }
    
      public void testBase16() {
        testEncodingWithCasing(base16(), "", "");
        testEncodingWithCasing(base16(), "f", "66");
        testEncodingWithCasing(base16(), "fo", "666F");
        testEncodingWithCasing(base16(), "foo", "666F6F");
        testEncodingWithCasing(base16(), "foob", "666F6F62");
        testEncodingWithCasing(base16(), "fooba", "666F6F6261");
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 06 12:56:11 UTC 2023
    - 24.6K bytes
    - Viewed (0)
  2. cluster/addons/calico-policy-controller/felixconfigurations-crd.yaml

                      The default value allows ssh access and DHCP. [Default: tcp:22,
                      udp:68, tcp:179, tcp:2379, tcp:2380, tcp:6443, tcp:6666, tcp:6667]'
                    items:
                      description: ProtoPort is combination of protocol and port, both
                        must be specified.
                      properties:
                        port:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 29.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/templates/structuring-software-projects/android-app/app/src/main/java/com/example/myproduct/app/MyProductAppActivity.kt

                val row = TableRow(this@MyProductAppActivity)
                rowData.forEach { cellData ->
                    row.addView(TextView(this@MyProductAppActivity).apply {
                        setPadding(6, 6, 6, 6)
                        if (cellData.contains("https://")) {
                            movementMethod = LinkMovementMethod.getInstance()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/view/cache.hbs

    <!DOCTYPE html>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <base href="{{url_link}}">
    <div style="border:1px solid #999;margin:5px -1px;padding:0;">
    <div style="color:#000;background:#ddd;border:1px solid #666;margin:10px 15px;padding:5px;text-align:left;">{{cache_msg}}</div>
    </div>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri May 06 04:49:09 UTC 2016
    - 324 bytes
    - Viewed (0)
  5. src/main/webapp/WEB-INF/orig/view/cache.hbs

    <!DOCTYPE html>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <base href="{{url_link}}">
    <div style="border:1px solid #999;margin:5px -1px;padding:0;">
    <div style="color:#000;background:#ddd;border:1px solid #666;margin:10px 15px;padding:5px;text-align:left;">{{cache_msg}}</div>
    </div>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri May 06 04:49:09 UTC 2016
    - 324 bytes
    - Viewed (0)
  6. cni/pkg/plugin/testdata/include-exclude-ports.txt.golden

    -A ISTIO_INBOUND -p tcp --dport 1111 -j ISTIO_IN_REDIRECT
    -A ISTIO_INBOUND -p tcp --dport 2222 -j ISTIO_IN_REDIRECT
    -A OUTPUT -p tcp -j ISTIO_OUTPUT
    -A ISTIO_OUTPUT -p tcp --dport 5555 -j RETURN
    -A ISTIO_OUTPUT -p tcp --dport 6666 -j RETURN
    -A ISTIO_OUTPUT -o lo -s 127.0.0.6/32 -j RETURN
    -A ISTIO_OUTPUT -o lo ! -d 127.0.0.1/32 -p tcp ! --dport 15008 -m owner --uid-owner 1337 -j ISTIO_IN_REDIRECT
    -A ISTIO_OUTPUT -o lo -m owner ! --uid-owner 1337 -j RETURN
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 16 22:54:20 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapterForBuildOperationsTest.groovy

            given:
            def listener = Mock(ProgressListener)
            def adapter = createAdapter(listener)
    
            when:
            def buildDesc = buildDescriptor(666, 'my build', 'some build')
            def startEvent = buildStartEvent(999, 'build started', buildDesc)
    
            adapter.onEvent(startEvent)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  8. pkg/proxy/conntrack/conntrack_test.go

    		{
    			name:   "IPv4",
    			port:   8080,
    			isIPv6: false,
    
    			expectCommand: "conntrack -D -p udp --dport 8080",
    		},
    		{
    			name:   "IPv6",
    			port:   6666,
    			isIPv6: true,
    
    			expectCommand: "conntrack -D -p udp --dport 6666 -f ipv6",
    		},
    	}
    
    	for _, tc := range testCases {
    		ct := makeCT(success)
    		err := ct.ClearEntriesForPort(tc.port, tc.isIPv6, v1.ProtocolUDP)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 15 18:08:36 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/projection/AbstractCollectionModelProjectionTest.groovy

            then:
            thrown(ReadOnlyModelViewException)
        }
    
        def "cannot add a different type than the declared one"() {
            when:
            mutate {
                add 'foo'
                add 666
            }
    
            registry.realize(collectionPath, collectionType)
    
            then:
            ModelRuleExecutionException ex = thrown()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  10. tests/customize_field_test.go

    		Date *time.Time `gorm:"column:mapped_time"`
    	}
    
    	DB.Migrator().DropTable(&CustomizeColumn{})
    	DB.AutoMigrate(&CustomizeColumn{})
    
    	expected := "foo"
    	now := time.Now()
    	cc := CustomizeColumn{ID: 666, Name: expected, Date: &now}
    
    	if count := DB.Create(&cc).RowsAffected; count != 1 {
    		t.Error("There should be one record be affected when create record")
    	}
    
    	var cc1 CustomizeColumn
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Sep 11 09:33:31 UTC 2020
    - 6.9K bytes
    - Viewed (0)
Back to top