Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 210 for ONCE (0.05 sec)

  1. pkg/kubelet/pod_workers.go

    	// could take an arbitrary amount of time to be closed, but is never left open once
    	// CouldHaveRunningContainers() returns false.
    	CompletedCh chan<- struct{}
    	// Evict is true if this is a pod triggered eviction - once a pod is evicted some resources are
    	// more aggressively reaped than during normal pod operation (stopped containers).
    	Evict bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  2. istioctl/pkg/writer/compare/testdata/configdump_diff.json

                                          "inline_string": "%REQ(:AUTHORITY)%"
                                        }
                                      },
                                      "shared_with_upstream": "ONCE"
                                    },
                                    {
                                      "object_key": "envoy.filters.listener.original_dst.remote_ip",
                                      "format_string": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 10:02:09 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  3. istioctl/pkg/writer/compare/testdata/configdump.json

                                          "inline_string": "%REQ(:AUTHORITY)%"
                                        }
                                      },
                                      "shared_with_upstream": "ONCE"
                                    },
                                    {
                                      "object_key": "envoy.filters.listener.original_dst.remote_ip",
                                      "format_string": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 10:02:09 UTC 2024
    - 52K bytes
    - Viewed (0)
  4. guava/src/com/google/common/cache/CacheBuilder.java

       * segments, each governed by its own write lock. The segment lock is taken once for each explicit
       * write, and twice for each cache loading computation (once prior to loading the new value, and
       * once after loading completes). Much internal cache management is performed at the segment
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  5. pkg/controller/volume/attachdetach/cache/actual_state_of_world_test.go

    	controllervolumetesting "k8s.io/kubernetes/pkg/controller/volume/attachdetach/testing"
    	volumetesting "k8s.io/kubernetes/pkg/volume/testing"
    	volumeutil "k8s.io/kubernetes/pkg/volume/util"
    )
    
    // Calls AddVolumeNode() once with attached set to true.
    // Verifies a single volume/node entry exists.
    func Test_AddVolumeNode_Positive_NewVolumeNewNode(t *testing.T) {
    	// Arrange
    	volumePluginMgr, _ := volumetesting.GetTestVolumePluginMgr(t)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 07:35:17 UTC 2024
    - 66.1K bytes
    - Viewed (0)
  6. pkg/proxy/nftables/proxier.go

    }
    
    // OnServiceSynced is called once all the initial event handlers were
    // called and the state is fully propagated to local cache.
    func (proxier *Proxier) OnServiceSynced() {
    	proxier.mu.Lock()
    	proxier.servicesSynced = true
    	proxier.setInitialized(proxier.endpointSlicesSynced)
    	proxier.mu.Unlock()
    
    	// Sync unconditionally - this is called once per lifetime.
    	proxier.syncProxyRules()
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  7. pkg/proxy/ipvs/proxier.go

    }
    
    // OnServiceSynced is called once all the initial event handlers were called and the state is fully propagated to local cache.
    func (proxier *Proxier) OnServiceSynced() {
    	proxier.mu.Lock()
    	proxier.servicesSynced = true
    	proxier.setInitialized(proxier.endpointSlicesSynced)
    	proxier.mu.Unlock()
    
    	// Sync unconditionally - this is called once per lifetime.
    	proxier.syncProxyRules()
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  8. istioctl/pkg/proxyconfig/testdata/config_dump.json

                                  }
                                },
                                "shared_with_upstream": "ONCE"
                              }
                            ]
                          }
                        },
                        {
                          "name": "istio.metadata_exchange",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 23:08:06 UTC 2024
    - 54.8K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/buildlist.go

    type ModuleGraph struct {
    	g         *mvs.Graph
    	loadCache par.ErrCache[module.Version, *modFileSummary]
    
    	buildListOnce sync.Once
    	buildList     []module.Version
    }
    
    var readModGraphDebugOnce sync.Once
    
    // readModGraph reads and returns the module dependency graph starting at the
    // given roots.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  10. tensorflow/c/c_api.h

    typedef struct TF_Graph TF_Graph;
    
    // Return a new graph object.
    TF_CAPI_EXPORT extern TF_Graph* TF_NewGraph(void);
    
    // Destroy an options object. Graph will be deleted once no more
    // TFSession's are referencing it.
    TF_CAPI_EXPORT extern void TF_DeleteGraph(TF_Graph*);
    
    // Operation being built. The underlying graph must outlive this.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
Back to top