Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 69 for DETAILS (0.11 sec)

  1. okhttp/src/test/java/okhttp3/CallTest.kt

        }
      }
    
      /**
       * Used during tests that involve TLS connection fallback attempts. OkHttp includes the
       * TLS_FALLBACK_SCSV cipher on fallback connections. See [FallbackTestClientSocketFactory]
       * for details.
       */
      private fun suppressTlsFallbackClientSocketFactory(): FallbackTestClientSocketFactory {
        return FallbackTestClientSocketFactory(handshakeCertificates.sslSocketFactory())
      }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  2. cmd/object-handlers.go

    // but WITHOUT ANY WARRANTY; without even the implied warranty of
    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    // GNU Affero General Public License for more details.
    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package cmd
    
    import (
    	"archive/tar"
    	"bytes"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  3. src/database/sql/sql.go

    	err  error // deferred error for easy chaining
    	rows *Rows
    }
    
    // Scan copies the columns from the matched row into the values
    // pointed at by dest. See the documentation on [Rows.Scan] for details.
    // If more than one row matches the query,
    // Scan uses the first row and discards the rest. If no row matches
    // the query, Scan returns [ErrNoRows].
    func (r *Row) Scan(dest ...any) error {
    	if r.err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  4. tests/integration/pilot/common/routing.go

    								// Conditionally check reached clusters to work around connection load balancing issues
    								// See https://github.com/istio/istio/issues/32208 for details
    								// We want to skip this for requests from the cross-network pod
    								if err := check.ReachedClusters(t.AllClusters(), toClusters).Check(echo.CallResult{
    									From:      result.From,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      }
    
      // Cannot pass `op.getArgs().getTypes()` to `loader->RefineDynamicShapes`
      // because `op` and `loader` are using different MLIR contexts. See comments
      // on `xla_call_module_context_` for details.
      std::vector<xla::Shape> input_shapes;
      input_shapes.reserve(op.getArgs().size());
      for (mlir::Type type : op.getArgs().getTypes()) {
        input_shapes.push_back(xla::TypeToShape(type));
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  6. cmd/server_test.go

    // but WITHOUT ANY WARRANTY; without even the implied warranty of
    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    // GNU Affero General Public License for more details.
    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package cmd
    
    import (
    	"bytes"
    	"context"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/exec.go

    		// depends on exactly what the staleness and rebuild algorithms
    		// are, as well as potentially the state of the Go build cache.
    		// We don't really want users to be able to infer (or worse start depending on)
    		// those details from whether the modification time changes during
    		// "go install", so do a best-effort update of the file times to make it
    		// look like we rewrote a.Target even if we did not. Updating the mtime
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet.go

    	}
    
    	machineInfo, err := klet.cadvisor.MachineInfo()
    	if err != nil {
    		return nil, err
    	}
    	// Avoid collector collects it as a timestamped metric
    	// See PR #95210 and #97006 for more details.
    	machineInfo.Timestamp = time.Time{}
    	klet.setCachedMachineInfo(machineInfo)
    
    	imageBackOff := flowcontrol.NewBackOff(backOffPeriod, MaxContainerBackOff)
    
    	klet.livenessManager = proberesults.NewManager()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  9. pkg/scheduler/internal/queue/scheduling_queue_test.go

    			// sorts them by Timestamps if they have the same Pod Priority).
    			// Using a fake clock for the queue and incrementing it after each added Pod will
    			// solve this issue on Windows unit test runs.
    			// For more details on the Windows clock resolution issue, see: https://github.com/golang/go/issues/8687
    			for _, p := range test.initialPods {
    				q.Add(logger, p)
    				fakeClock.Step(time.Second)
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    	if status.Status != metav1.StatusFailure || status.Message == "" || status.Details == nil || status.Reason != metav1.StatusReasonAlreadyExists {
    		t.Errorf("Unexpected status %#v", status)
    	}
    }
    
    type UnregisteredAPIObject struct {
    	Value string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
Back to top