Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for is_initialized (0.27 sec)

  1. pkg/proxy/nftables/proxier.go

    		proxier.Sync()
    	}
    }
    
    // OnEndpointSliceUpdate is called whenever modification of an existing endpoint
    // slice object is observed.
    func (proxier *Proxier) OnEndpointSliceUpdate(_, endpointSlice *discovery.EndpointSlice) {
    	if proxier.endpointsChanges.EndpointSliceUpdate(endpointSlice, false) && proxier.isInitialized() {
    		proxier.Sync()
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DefaultConfigurationCache.kt

            stoppable.add(store)
            stoppable.stop()
        }
    
        private
        fun CompositeStoppable.addIfInitialized(closeable: Lazy<*>) {
            if (closeable.isInitialized()) {
                add(closeable.value)
            }
        }
    
        private
        fun checkFingerprint(): CheckedFingerprint {
            return store.useForStateLoad { layout ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      );
    
      let results = (outs
        Res<TF_BoolTensor, [{a scalar boolean which is true if the variable has been
    initialized.}]>:$is_initialized
      );
    
      let hasCanonicalizer = 1;
    }
    
    def TF_VariableOp : TF_Op<"Variable", []> {
      let summary = "Use VariableV2 instead.";
    
      let arguments = (ins
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top