Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 544 for Primer (1.8 sec)

  1. pkg/scheduler/framework/plugins/dynamicresources/structuredparameters_test.go

    					NodeName:      "node",
    					DriverName:    "driver",
    					ResourceModel: resourceapi.ResourceModel{ /* empty! */ },
    				},
    			},
    
    			// Not an error. It is safe to ignore unknown resources until a claim requests them.
    			// The unknown model in that claim then triggers an error for that claim.
    			wantResources: resources{"node": map[string]ResourceModels{
    				"driver": {
    					NamedResources: namedresourcesmodel.Model{},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 27 09:27:01 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  2. platforms/core-execution/build-cache-http/src/integTest/groovy/org/gradle/caching/http/internal/HttpBuildCacheServiceTest.groovy

            server.expectGetEmptyOk("/redirect/cache/${key.hashCode}")
    
            when:
            def writer = writer(content)
            cache.store(key, writer)
    
            then:
            noExceptionThrown()
            writer.writeCount == 1
        }
    
        def "storing to cache can follow method preserving redirects"() {
            def destFile = tempDir.file("cached.zip")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 16:15:24 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/dra/state/state_checkpoint_test.go

    			"",
    			[]ClaimInfoState{
    				{
    					DriverName: "meta-test-driver.cdi.k8s.io",
    					ClassName:  "class-name",
    					ClaimUID:   "067798be-454e-4be4-9047-1aa06aea63f7",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:13 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  4. src/database/sql/fakedb_test.go

    		return driver.Null{Converter: driver.DefaultParameterConverter}
    	case "float64":
    		// TODO(coopernurse): add type-specific converter
    		return driver.NotNull{Converter: driver.DefaultParameterConverter}
    	case "nullfloat64":
    		// TODO(coopernurse): add type-specific converter
    		return driver.Null{Converter: driver.DefaultParameterConverter}
    	case "datetime":
    		return driver.NotNull{Converter: driver.DefaultParameterConverter}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 12:38:07 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/internal/xml/XmlTransformerTest.groovy

            given:
            def writer = new StringWriter()
            def input = "<things><thing/></things>"
            def generator = new Action<Writer>() {
                void execute(Writer t) {
                    t.write(input)
                }
            }
    
            when:
            transformer.transform(writer, generator)
    
            then:
            looksLike(input, writer.toString())
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 15 08:16:06 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  6. src/database/sql/convert.go

    }
    
    // ccChecker wraps the driver.ColumnConverter and allows it to be used
    // as if it were a NamedValueChecker. If the driver ColumnConverter
    // is not present then the NamedValueChecker will return driver.ErrSkip.
    type ccChecker struct {
    	cci  driver.ColumnConverter
    	want int
    }
    
    func (c ccChecker) CheckNamedValue(nv *driver.NamedValue) error {
    	if c.cci == nil {
    		return driver.ErrSkip
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  7. src/text/tabwriter/tabwriter.go

    	// append leftover text
    	b.append(buf[n:])
    	n = len(buf)
    	return
    }
    
    // NewWriter allocates and initializes a new [Writer].
    // The parameters are the same as for the Init function.
    func NewWriter(output io.Writer, minwidth, tabwidth, padding int, padchar byte, flags uint) *Writer {
    	return new(Writer).Init(output, minwidth, tabwidth, padding, padchar, flags)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 16:46:34 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  8. platforms/software/publish/src/test/groovy/org/gradle/api/publish/internal/metadata/GradleModuleMetadataWriterTest.groovy

                TestUtil.checksumService
            ).writeTo(writer, spec)
        }
    
        def "fails to write file for component with no variants"() {
            def writer = new StringWriter()
            def component = Stub(TestComponent)
            def publication = publication(component, id)
    
            when:
            writeTo(writer, publication, [publication])
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 07:21:42 UTC 2023
    - 36.9K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/internal/ws/RealWebSocket.kt

          writerToClose = this.writer
          this.writer = null
    
          streamsToClose =
            when {
              writerToClose != null && reader == null -> this.streams
              else -> null
            }
    
          if (!isWriter && writerToClose != null) {
            // If the caller isn't the writer thread, get that thread to close the writer.
            taskQueue.execute("$name writer close", cancelable = false) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 01 14:21:25 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  10. pkg/apis/storage/types.go

    // CSIDriver captures information about a Container Storage Interface (CSI)
    // volume driver deployed on the cluster.
    // CSI drivers do not need to create the CSIDriver object directly. Instead they may use the
    // cluster-driver-registrar sidecar container. When deployed with a CSI driver it automatically
    // creates a CSIDriver object representing the driver.
    // Kubernetes attach detach controller uses this object to determine whether attach is required.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 13 20:24:57 UTC 2023
    - 29.4K bytes
    - Viewed (0)
Back to top