Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of about 10,000 for lost (0.27 sec)

  1. cmd/format-erasure_test.go

    	for i := range newFormats {
    		for j := range newFormats[i] {
    			if newFormats[i][j] == nil {
    				continue
    			}
    			if newFormats[i][j].ID != quorumFormat.ID {
    				t.Fatal("Deployment id in the new format is lost")
    			}
    		}
    	}
    }
    
    func BenchmarkInitStorageDisks256(b *testing.B) {
    	benchmarkInitStorageDisksN(b, 256)
    }
    
    func BenchmarkInitStorageDisks1024(b *testing.B) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 15 08:25:46 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2/grpc_service_unix_test.go

    			}
    
    			// Collecting kms-plugin - allowing plugin to clean-up.
    			kmsPluginWG.Wait()
    		})
    	}
    }
    
    // TestIntermittentConnectionLoss tests the scenario where the connection with kms-plugin is intermittently lost.
    func TestIntermittentConnectionLoss(t *testing.T) {
    	t.Parallel()
    	var (
    		wg1        sync.WaitGroup
    		wg2        sync.WaitGroup
    		timeout    = 30 * time.Second
    		blackOut   = 1 * time.Second
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 19:25:52 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  3. src/net/http/httptest/server.go

    			// waitgroup.
    			s.wg.Add(1)
    			s.conns[c] = cs
    			if s.closed {
    				// Probably just a socket-late-binding dial from
    				// the default transport that lost the race (and
    				// thus this connection is now idle and will
    				// never be used).
    				s.closeConn(c)
    			}
    		case http.StateActive:
    			if oldState, ok := s.conns[c]; ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 17:26:10 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. src/runtime/defer_test.go

    	}
    	panic("testNonOpenDefer")
    }
    
    var list []int
    
    // Make sure that conditional open-coded defers are activated correctly and run in
    // the correct order.
    func TestConditionalDefers(t *testing.T) {
    	list = make([]int, 0, 10)
    
    	defer func() {
    		if recover() != "testConditional" {
    			t.Fatal("expected panic")
    		}
    		want := []int{4, 2, 1}
    		if !reflect.DeepEqual(want, list) {
    			t.Fatalf("wanted %v, got %v", want, list)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 18:57:24 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_tidy_version.txt

    go mod tidy -go=1.17
    cmp go.mod go.mod.117
    
    go mod tidy
    cmp go.mod go.mod.117
    
    
    # If we downgrade back to 1.15, we should re-resolve d to v0.2.0 instead
    # of the original v0.1.0 (because the original requirement is lost).
    
    go mod tidy -go=1.15
    cmp go.mod go.mod.115-2
    
    
    # -go= (with an empty argument) maintains the existing version or adds the
    #  default version (just like omitting the flag).
    
    go mod tidy -go=''
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 02 23:07:08 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/ConnectionCoalescingTest.kt

      /**
       * Test connecting to the main host then an alternative, although only subject alternative names
       * are used if present no special consideration of common name.
       */
      @Test
      fun commonThenAlternative() {
        server.enqueue(MockResponse())
        server.enqueue(MockResponse())
        assert200Http2Response(execute(url), server.hostName)
        val sanUrl = url.newBuilder().host("san.com").build()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  7. src/go/printer/testdata/comments.input

    	var a = []int{1, 2, /*jasldf
    						*/
    	}
    	_ = a
    }
    
    func _() {
    	var a = []int{1, 2, // jasldf
    	}
    	_ = a
    }
    
    // Test cases from issues 11274, 15137:
    // Semicolon must not be lost when multiple statements are on the same line with a comment.
    func _() {
        x := 0 /**/; y := 1
    }
    
    func _() {
    	f(); f()
    	f(); /* comment */ f()
    	f() /* comment */; f()
    	f(); /* a */ /* b */ f()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 25 23:11:14 UTC 2022
    - 11.3K bytes
    - Viewed (0)
  8. src/net/http/httputil/persist.go

    	if sc.nread <= sc.nwritten {
    		defer sc.mu.Unlock()
    		return errors.New("persist server pipe count")
    	}
    	if resp.Close {
    		// After signaling a keep-alive close, any pipelined unread
    		// requests will be lost. It is up to the user to drain them
    		// before signaling.
    		sc.re = ErrPersistEOF
    	}
    	sc.mu.Unlock()
    
    	err := resp.Write(c)
    	sc.mu.Lock()
    	defer sc.mu.Unlock()
    	if err != nil {
    		sc.we = err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  9. pkg/api/v1/resource/helpers.go

    }
    
    // addResourceList adds the resources in newList to list.
    func addResourceList(list, newList v1.ResourceList) {
    	for name, quantity := range newList {
    		if value, ok := list[name]; !ok {
    			list[name] = quantity.DeepCopy()
    		} else {
    			value.Add(quantity)
    			list[name] = value
    		}
    	}
    }
    
    // maxResourceList sets list to the greater of list/newList for every resource in newList
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 26 13:58:16 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DefaultConfigurationCache.kt

            // TODO:isolated find a way to avoid this late binding
            modelSideEffectExecutor.sideEffectStore = buildTreeModelSideEffects
        }
    
        override fun attachRootBuild(host: Host) {
            this.host = host
        }
    
        override fun loadOrScheduleRequestedTasks(
            graph: BuildTreeWorkGraph,
            graphBuilder: BuildTreeWorkGraphBuilder?,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 24.3K bytes
    - Viewed (0)
Back to top