Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 121 for writes (0.12 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    				Operation("read"+namespaced+kind+strings.Title(subresource)+operationSuffix).
    				Produces(append(storageMeta.ProducesMIMETypes(action.Verb), mediaTypes...)...).
    				Returns(http.StatusOK, "OK", producedObject).
    				Writes(producedObject)
    			if isGetterWithOptions {
    				if err := AddObjectParams(ws, route, versionedGetOptions); err != nil {
    					return nil, nil, err
    				}
    			}
    			addParams(route, action.Params)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

      }
    
      // Insert stores to all written resources.
      for (Value resource : written_resources_) {
        ResourceInfo& info = resources_[resource];
        Value value_to_write = new_op->getResult(info.result_index);
        Operation* write = builder.create<TF::AssignVariableOp>(
            op_->getLoc(), resource, value_to_write);
        write->setAttrs(info.write_attrs);
        write->removeAttr(kDeviceAttr);
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  3. src/crypto/tls/handshake_client_test.go

    	}
    }
    
    // brokenConn wraps a net.Conn and causes all Writes after a certain number to
    // fail with brokenConnErr.
    type brokenConn struct {
    	net.Conn
    
    	// breakAfter is the number of successful writes that will be allowed
    	// before all subsequent writes fail.
    	breakAfter int
    
    	// numWrites is the number of writes that have been done.
    	numWrites int
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  4. src/crypto/tls/conn.go

    	}
    
    	if transcript != nil {
    		transcript.Write(data)
    	}
    
    	return m, nil
    }
    
    var (
    	errShutdown = errors.New("tls: protocol is shutdown")
    )
    
    // Write writes data to the connection.
    //
    // As Write calls [Conn.Handshake], in order to prevent indefinite blocking a deadline
    // must be set for both [Conn.Read] and Write before Write is called when the handshake
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  5. cluster/gce/windows/k8s-node-setup.psm1

    function WaitFor_KubeletAndKubeProxyReady {
      $waited = 0
      $timeout = 10
      while (((Get-Service kube-proxy).Status -ne 'Running' -or (Get-Service kubelet).Status -ne 'Running') -and $waited -lt $timeout) {
        Start-Sleep 1
        $waited++
      }
    
      # Timeout occurred
      if ($waited -ge $timeout) {
        Log-Output "$(Get-Service kube* | Out-String)"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/internal/cache/DiskLruCacheTest.kt

        set("b", "b", "b")
    
        // Create an entry that fails to write to the journal during commit.
        val editor = cache.edit("c")!!
        editor.setString(0, "c")
        editor.setString(1, "c")
        filesystem.setFaultyWrite(journalFile, true)
        editor.commit()
    
        // Once the journal has a failure, subsequent writes aren't permitted.
        filesystem.setFaultyWrite(journalFile, false)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 14:55:09 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  7. src/net/http/client_test.go

    	}
    
    	writes = 0
    	_, err = c.PostForm(ts.URL, url.Values{"foo": {"bar"}})
    	if err != nil {
    		t.Fatal(err)
    	}
    	if writes != 1 {
    		t.Errorf("Post request did %d Write calls, want 1", writes)
    	}
    }
    
    func TestClientInsecureTransport(t *testing.T) {
    	run(t, testClientInsecureTransport, []testMode{https1Mode, http2Mode})
    }
    func testClientInsecureTransport(t *testing.T, mode testMode) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

        TF_Int64Tensor:$step,
        TF_StrTensor:$tensor
      );
    
      let results = (outs);
    }
    
    def TF_WriteScalarSummaryOp : TF_Op<"WriteScalarSummary", []> {
      let summary = "Writes a `Summary` protocol buffer with scalar values.";
    
      let description = [{
    The input `tag` and `value` must have the scalars.
    
    writer: A handle to a summary writer.
    step: The step to write the summary for.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  9. src/runtime/map.go

    	}
    	if asanenabled {
    		asanread(key, t.Key.Size_)
    	}
    	if h.flags&hashWriting != 0 {
    		fatal("concurrent map writes")
    	}
    	hash := t.Hasher(key, uintptr(h.hash0))
    
    	// Set hashWriting after calling t.hasher, since t.hasher may panic,
    	// in which case we have not actually done a write.
    	h.flags ^= hashWriting
    
    	if h.buckets == nil {
    		h.buckets = newobject(t.Bucket) // newarray(t.Bucket, 1)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanParallelTest.groovy

            Task b = task("b", type: AsyncWithLocalState)
            _ * b.localStateFile >> sharedFile
    
            expect:
            tasksAreNotExecutedInParallel(a, b)
        }
    
        def "a task that writes into a directory that is an output of a running task is not started"() {
            given:
            Task a = task("a", type: AsyncWithOutputDirectory)
            _ * a.outputDirectory >> file("outputDir")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 93.5K bytes
    - Viewed (0)
Back to top