Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 95 for lasta (0.12 sec)

  1. pkg/controller/volume/attachdetach/reconciler/reconciler_test.go

    			volumeName,
    			nodeName,
    			result,
    			isAttached)
    		return false, nil
    	})
    	if err != nil {
    		t.Fatalf("last error: %q, wait timeout: %q", lastErr, err.Error())
    	}
    
    }
    
    func verifyVolumeNoStatusUpdateNeeded(
    	t *testing.T,
    	logger klog.Logger,
    	volumeName v1.UniqueVolumeName,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:14 UTC 2024
    - 72.8K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/internal/cache/DiskLruCacheTest.kt

        assertValue("c", "c", "c")
        abortEditor.abort()
        cache.close()
        createNewCache()
    
        // Although 'c' successfully committed above, the journal wasn't available to issue a CLEAN op.
        // Because the last state of 'c' was DIRTY before the journal failed, it should be removed
        // entirely on a subsequent open.
        assertThat(cache.size()).isEqualTo(4)
        assertAbsent("c")
        assertAbsent("d")
        assertAbsent("e")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 14:55:09 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  3. src/runtime/mgc.go

    			pp.limiterEvent.stop(limiterEventIdleMarkWork, now)
    		}
    		if pp.gcMarkWorkerMode == gcMarkWorkerFractionalMode {
    			atomic.Xaddint64(&pp.gcFractionalMarkTime, duration)
    		}
    
    		// Was this the last worker and did we run out
    		// of work?
    		incnwait := atomic.Xadd(&work.nwait, +1)
    		if incnwait > work.nproc {
    			println("runtime: p.gcMarkWorkerMode=", pp.gcMarkWorkerMode,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  4. src/text/template/exec_test.go

    	{"simple assignment", "{{$x := 2}}{{$x = 3}}{{$x}}", "3", tVal, true},
    	{"nested assignment",
    		"{{$x := 2}}{{if true}}{{$x = 3}}{{end}}{{$x}}",
    		"3", tVal, true},
    	{"nested assignment changes the last declaration",
    		"{{$x := 1}}{{if true}}{{$x := 2}}{{if true}}{{$x = 3}}{{end}}{{end}}{{$x}}",
    		"1", tVal, true},
    
    	// Type with String method.
    	{"V{6666}.String()", "-{{.V0}}-", "-<6666>-", tVal, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  5. src/runtime/malloc.go

    	mapMemory bool // transition memory from Reserved to Ready if true
    }
    
    func (l *linearAlloc) init(base, size uintptr, mapMemory bool) {
    	if base+size < base {
    		// Chop off the last byte. The runtime isn't prepared
    		// to deal with situations where the bounds could overflow.
    		// Leave that memory reserved, though, so we don't map it
    		// later.
    		size -= 1
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  6. pkg/workloadapi/workload.pb.go

    	Protocol ApplicationTunnel_Protocol `protobuf:"varint,1,opt,name=protocol,proto3,enum=istio.workload.ApplicationTunnel_Protocol" json:"protocol,omitempty"`
    	// optional: if set, traffic should be sent to this port after the last zTunnel hop
    	Port uint32 `protobuf:"varint,2,opt,name=port,proto3" json:"port,omitempty"`
    }
    
    func (x *ApplicationTunnel) Reset() {
    	*x = ApplicationTunnel{}
    	if protoimpl.UnsafeEnabled {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    	assertEndpointsEvent([]string{"172.0.1.1"}, []string{"pod1"})
    	fx.Clear()
    
    	// add another service
    	addService("other")
    	// Add endpoints for the new service, and the old one. Both should be missing the last IP
    	addEndpoint("other", []string{"172.0.1.1", "172.0.1.2"}, []string{"pod1", "pod2"})
    	addEndpoint("svc", []string{"172.0.1.1", "172.0.1.2"}, []string{"pod1", "pod2"})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

      //****************************************************************************
      // Build the cond function body. All we need is a ReturnOp that returns C_i
      // which is the last argument.
      cond_builder.create<func::ReturnOp>(loc, cond.getArgument(C_index_i));
    
      //****************************************************************************
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/init.go

    			// want to run concurrent commands, they need to start with a complete,
    			// consistent module definition.
    			return nil, fmt.Errorf("existing contents have changed since last read")
    		}
    
    		return updatedGoMod, nil
    	})
    
    	if err != nil && err != errNoChange {
    		return fmt.Errorf("updating go.mod: %w", err)
    	}
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    	// waiting for resources *before* triggering delayed volume
    	// provisioning?  On the one hand, volume provisioning is currently
    	// irreversible, so it better should come last. On the other hand,
    	// triggering both in parallel might be faster.
    	return statusPending(logger, "waiting for resource driver to provide information", "pod", klog.KObj(pod))
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
Back to top