Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 160 for bark (0.11 sec)

  1. okhttp/src/test/java/okhttp3/internal/http2/Http2ConnectionTest.kt

        peer.acceptFrame() // DATA STREAM 3 "abcde"
        peer.acceptFrame() // HEADERS STREAM 3
        peer.play()
    
        // Play it back.
        val connection = connect(peer)
        val stream = connection.newStream(headerEntries("a", "android"), true)
        stream.enqueueTrailers(headersOf("foo", "bar"))
        val sink = stream.getSink().buffer()
        sink.writeUtf8("abcdefghi")
        sink.close()
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    			indexFields:        []string{"spec.nodeName"},
    			watchTests: []*testWatchStruct{
    				{baseNamespacedPod("t8-foo1", "t8-ns1"), false, ""},
    				{baseNamespacedPodAssigned("t8-foo1", "t8-ns1", "t8-bar1"), false, ""},
    				{baseNamespacedPodAssigned("t8-foo1", "t8-ns2", "t8-bar2"), false, ""},
    				{baseNamespacedPodAssigned("t8-foo1", "t8-ns1", "t8-bar2"), true, watch.Added},
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/registry/rest/resttest/resttest.go

    	objMeta.SetNamespace(genericapirequest.NamespaceValue(ctx1))
    	_, err := t.storage.(rest.Creater).Create(ctx1, obj, rest.ValidateAllObjectFunc, &metav1.CreateOptions{})
    	if err != nil {
    		t.Errorf("unexpected error: %v", err)
    	}
    
    	ctx2 := genericapirequest.WithNamespace(genericapirequest.NewContext(), "bar4")
    	objMeta.SetNamespace(genericapirequest.NamespaceValue(ctx2))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  4. tensorflow/BUILD

    #     srcs = glob(
    #         [
    #             "*.bara.sky",
    #             "*.dic",
    #             "*.ftrcp",
    #         ],
    #         exclude = [
    #             "copy.bara.sky",
    #         ],
    #     ),
    #     visibility = ["//visibility:public"],
    # )
    #
    # filegroup(
    #     name = "copybara_config",
    #     srcs = ["copy.bara.sky"],
    #     data = [
    #         ":copybara_library",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  5. pkg/controller/volume/persistentvolume/pv_controller.go

    					// Nothing was saved; we will fall back into the same condition
    					// in the next call to this method
    					return err
    				}
    			}
    			if err = ctrl.reclaimVolume(ctx, volume); err != nil {
    				// Release failed, we will fall back into the same condition
    				// in the next call to this method
    				return err
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  6. src/runtime/mgcmark.go

    			work.nBSSRoots = nBSSRoots
    		}
    	}
    
    	// Scan span roots for finalizer specials.
    	//
    	// We depend on addfinalizer to mark objects that get
    	// finalizers after root marking.
    	//
    	// We're going to scan the whole heap (that was available at the time the
    	// mark phase started, i.e. markArenas) for in-use spans which have specials.
    	//
    	// Break up the work into arenas, and further into chunks.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

      OpBuilder op_builder{region};
      mlir::IRMapping mapper;
      func.getBody().cloneInto(&region, mapper);
      mlir::Operation& return_op = region.back().back();
      mlir::Location loc = return_op.getLoc();
      op_builder.setInsertionPointToEnd(&region.back());
      op_builder.create<mlir::stablehlo::ReturnOp>(loc, return_op.getOperands());
      return_op.erase();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  8. pkg/scheduler/internal/queue/scheduling_queue.go

    	// by injecting the pods through a reserved CycleState struct (PodsToActivate).
    	Activate(logger klog.Logger, pods map[string]*v1.Pod)
    	// AddUnschedulableIfNotPresent adds an unschedulable pod back to scheduling queue.
    	// The podSchedulingCycle represents the current scheduling cycle number which can be
    	// returned by calling SchedulingCycle().
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  9. docs/bucket/notifications/README.md

    MINIO_NOTIFY_AMQP_COMMENT        (sentence)  optionally add a comment to this setting
    ```
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  10. src/runtime/asm_amd64.s

    	// Synchronous initialization.
    	CALL	runtimeĀ·libpreinit(SB)
    
    	// Create a new thread to finish Go runtime initialization.
    	MOVQ	_cgo_sys_thread_create(SB), AX
    	TESTQ	AX, AX
    	JZ	nocgo
    
    	// We're calling back to C.
    	// Align stack per ELF ABI requirements.
    	MOVQ	SP, BX  // Callee-save in C ABI
    	ANDQ	$~15, SP
    	MOVQ	$_rt0_amd64_lib_go(SB), DI
    	MOVQ	$0, SI
    	CALL	AX
    	MOVQ	BX, SP
    	JMP	restore
    
    nocgo:
    	ADJSP	$16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
Back to top