Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 681 for isInitialized (0.29 sec)

  1. internal/config/lambda/target/lazyinit.go

    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package target
    
    import (
    	"sync"
    	"sync/atomic"
    )
    
    // Inspired from Golang sync.Once but it is only marked
    // initialized when the provided function returns nil.
    
    type lazyInit struct {
    	done uint32
    	m    sync.Mutex
    }
    
    func (l *lazyInit) Do(f func() error) error {
    	if atomic.LoadUint32(&l.done) == 0 {
    		return l.doSlow(f)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Mar 07 16:12:41 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/cc/save_variables.h

    #include "mlir/IR/BuiltinOps.h"  // from @llvm-project
    
    namespace tensorflow {
    namespace quantization {
    
    // Saves variables in `module_op` to the checkpoint file inside `prefix`.
    // It finds variables that are initialized with "tf.AssignVariableOp" inside the
    // initializer function with type "restore_op". The "tf.Const"s used to
    // initialize the variables are saved. This function does not modify the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Dec 22 02:23:23 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  3. src/cmd/go/internal/base/goflags.go

    func GOFLAGS() []string {
    	InitGOFLAGS()
    	return goflags
    }
    
    // InitGOFLAGS initializes the goflags list from $GOFLAGS.
    // If goflags is already initialized, it does nothing.
    func InitGOFLAGS() {
    	if goflags != nil { // already initialized
    		return
    	}
    
    	// Ignore bad flag in go env and go bug, because
    	// they are what people reach for when debugging
    	// a problem, and maybe they're debugging GOFLAGS.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 19 14:42:39 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuildingRequest.java

        }
    
        /**
         * @since 3.2.2
         * @deprecated This got added when implementing MNG-2199 and is no longer used.
         * Commit 6cf9320942c34bc68205425ab696b1712ace9ba4 updated the way 'MavenProject' objects are initialized.
         */
        @Deprecated
        public ProjectBuildingRequest setResolveVersionRanges(boolean value) {
            this.resolveVersionRanges = value;
            return this;
        }
    
        /**
         * @since 3.2.2
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 8.9K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/test/groovy/org/gradle/util/SetSystemPropertiesTest.groovy

            then:
            def e = thrown(IllegalArgumentException)
            e.message == "'java.io.tmpdir' should not be set via a rule as its value cannot be changed once it is initialized"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/sys/cpu/cpu_openbsd_arm64.go

    	if !ok {
    		return
    	}
    	isar1, ok := sysctlUint64([]uint32{_CTL_MACHDEP, _CPU_ID_AA64ISAR1})
    	if !ok {
    		return
    	}
    	parseARM64SystemRegisters(isar0, isar1, 0)
    
    	Initialized = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/get_compiler_ir.cc

          arg.definition_stack_trace = variable.definition_stack_trace();
          TF_RET_CHECK(variable.var() && variable.var()->is_initialized);
          const Tensor* value = variable.var()->tensor();
          arg.type = value->dtype();
          arg.shape = value->shape();
          arg.initialized = true;
        } else {
          // Instead of embedding constant into HLO,
          // we handle tf.constant as parameter to reduce size.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 19K bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/testcarchive/testdata/libgo2/libgo2.go

    			fmt.Fprintln(os.Stderr, "no panic from segv")
    			os.Exit(1)
    		}
    	}()
    	*P = 0
    	fmt.Fprintln(os.Stderr, "continued after segv")
    	os.Exit(1)
    }
    
    // Noop ensures that the Go runtime is initialized.
    //
    //export Noop
    func Noop() {
    }
    
    // Raise SIGPIPE.
    //
    //export GoRaiseSIGPIPE
    func GoRaiseSIGPIPE() {
    	C.CRaiseSIGPIPE()
    }
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. pkg/securitycontext/accessors.go

    // May be initialized with a nil PodSecurityContext.
    func NewPodSecurityContextAccessor(podSC *api.PodSecurityContext) PodSecurityContextAccessor {
    	return &podSecurityContextWrapper{podSC: podSC}
    }
    
    // NewPodSecurityContextMutator returns a mutator for the given pod security context.
    // May be initialized with a nil PodSecurityContext.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 22 16:15:27 UTC 2023
    - 14.4K bytes
    - Viewed (0)
  10. maven-slf4j-provider/src/main/java/org/apache/maven/slf4j/MavenServiceProvider.java

            return mdcAdapter;
        }
    
        @Override
        public String getRequestedApiVersion() {
            return REQUESTED_API_VERSION;
        }
    
        @Override
        public void initialize() {
            // already initialized
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 09 06:36:58 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top