Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 99 for property2 (0.19 sec)

  1. pilot/pkg/networking/core/listener_test.go

    	// The oldest service port is unknown.  We should encounter conflicts when attempting to add the HTTP ports. Purposely
    	// storing the services out of time order to test that it's being sorted properly.
    	testOutboundListenerConflict(t,
    		buildService("test1.com", wildcardIPv4, protocol.HTTP, tnow.Add(1*time.Second)),
    		buildService("test2.com", wildcardIPv4, "unknown", tnow),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  2. cmd/erasure-healing_test.go

    			erasureDisks[i].Delete(context.Background(), bucket, pathJoin(object, xlStorageFormatFile), DeleteOptions{
    				Recursive: false,
    				Immediate: false,
    			})
    		}
    
    		// Try healing now, it should heal the content properly.
    		_, err = objLayer.HealObject(ctx, bucket, object, "", hopts)
    		if err != nil {
    			t.Fatal(err)
    		}
    
    		fileInfos, errs = readAllFileInfo(ctx, erasureDisks, "", bucket, object, "", false, true)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 49K bytes
    - Viewed (0)
  3. src/time/time.go

    func (t Time) IsZero() bool {
    	return t.sec() == 0 && t.nsec() == 0
    }
    
    // abs returns the time t as an absolute time, adjusted by the zone offset.
    // It is called when computing a presentation property like Month or Hour.
    func (t Time) abs() uint64 {
    	l := t.loc
    	// Avoid function calls when possible.
    	if l == nil || l == &localLoc {
    		l = l.get()
    	}
    	sec := t.unixSec()
    	if l != &utcLoc {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  4. pkg/volume/testing/testing.go

    	}
    }
    
    func ProbeVolumePlugins(config volume.VolumeConfig) []volume.VolumePlugin {
    	if _, ok := config.OtherAttributes["fake-property"]; ok {
    		return []volume.VolumePlugin{
    			&FakeVolumePlugin{
    				PluginName: "fake-plugin",
    				Host:       nil,
    				// SomeFakeProperty: config.OtherAttributes["fake-property"] -- string, may require parsing by plugin
    			},
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/base/CharMatcher.java

       * SPACE_SEPARATOR, LINE_SEPARATOR, PARAGRAPH_SEPARATOR, CONTROL, FORMAT, SURROGATE, and
       * PRIVATE_USE according to ICU4J.
       *
       * <p>See also the Unicode Default_Ignorable_Code_Point property (available via ICU).
       *
       * @deprecated Most invisible characters are supplementary characters; see the class
       *     documentation.
       * @since 19.0 (since 1.0 as constant {@code INVISIBLE})
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  6. guava/src/com/google/common/base/CharMatcher.java

       * SPACE_SEPARATOR, LINE_SEPARATOR, PARAGRAPH_SEPARATOR, CONTROL, FORMAT, SURROGATE, and
       * PRIVATE_USE according to ICU4J.
       *
       * <p>See also the Unicode Default_Ignorable_Code_Point property (available via ICU).
       *
       * @deprecated Most invisible characters are supplementary characters; see the class
       *     documentation.
       * @since 19.0 (since 1.0 as constant {@code INVISIBLE})
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradlePomModuleDescriptorParserTest.groovy

    """
    
            when:
            def metaData = parseMetaData()
    
            then:
            metaData.packaging == 'pom'
        }
    
        @Issue("GRADLE-3074")
        def "pom with packaging defined by custom property"() {
            given:
            pomFile << """
    <project>
        <modelVersion>4.0.0</modelVersion>
        <groupId>group-one</groupId>
        <artifactId>artifact-one</artifactId>
        <version>version-one</version>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 75.4K bytes
    - Viewed (0)
  8. src/math/big/float_test.go

    		if !alike(&z, want) {
    			t.Errorf("SetMantExp(%s, %d) = %s; want %s", test.frac, test.exp, z.Text('g', 10), test.z)
    		}
    		// test inverse property
    		mant := new(Float)
    		if z.SetMantExp(mant, want.MantExp(mant)).Cmp(want) != 0 {
    			t.Errorf("Inverse property not satisfied: got %s; want %s", z.Text('g', 10), test.z)
    		}
    	}
    }
    
    func TestFloatPredicates(t *testing.T) {
    	for _, test := range []struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    default, the worker pool size is determined by the number of available processors on the build machine (as reported to the build JVM). To explicitly set the number of workers use the `--max-workers` command-line option or `org.gradle.workers.max` system property. There is generally no need to change this setting from its default.
    
    The build worker pool is shared across all build tasks. This means that when using <<performance.adoc#parallel_execution,parallel project execution>>, the maximum number...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go

    				"type(self) == type(self)":                                     5,
    				"type(self.nestedInMap['k1']) == type(self.nestedInMap['k2'])": 9,
    			},
    		},
    		{name: "listMaps with unsupported identity characters in property names",
    			obj: map[string]interface{}{
    				"objs": []interface{}{
    					[]interface{}{
    						map[string]interface{}{"k!": "a", "k.": "1"},
    						map[string]interface{}{"k!": "b", "k.": "2"},
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
Back to top