Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,970 for accesses (0.17 sec)

  1. src/internal/runtime/atomic/types.go

    // license that can be found in the LICENSE file.
    
    package atomic
    
    import "unsafe"
    
    // Int32 is an atomically accessed int32 value.
    //
    // An Int32 must not be copied.
    type Int32 struct {
    	noCopy noCopy
    	value  int32
    }
    
    // Load accesses and returns the value atomically.
    //
    //go:nosplit
    func (i *Int32) Load() int32 {
    	return Loadint32(&i.value)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_modinfo.txt

    stderr 'Hello, world.'
    
    [short] skip
    
    # Build a binary that accesses its debug info by reading the binary directly
    # (rather than through debug.ReadBuildInfo).
    # The debug info should still be present (golang.org/issue/28753).
    cd unused
    go build
    exec ./unused$GOEXE
    
    -- x/go.mod --
    module x
    
    -- x/lib/lib.go --
    // Package lib accesses runtime/debug.modinfo before package main's init
    // functions have run.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 19:12:23 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/classpath/InstrumentedExecutionAccess.java

        }
    
        /**
         * Called by generated code
         *
         * Invoked when the code accesses the injected service of type that disallowed at execution time (eg. Project)
         *
         * @param injectedServiceType the type of the injected service that was accessed
         * @param consumer class name of consumer that contains the code accesses the injected service
         */
        public static void disallowedAtExecutionInjectedServiceAccessed(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 17 20:16:53 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_merge_variables_with_execute.cc

        if (resource_ids.contains(id)) return false;
      }
      return true;
    }
    
    // Adds IDs of resources which `op` accesses to `resource_ids`.
    // Returns true iff op accesses a resource unknown to `resource_analysis_info`
    // in which case we have to conservatively assume that any resource might be
    // accessed.
    bool AddAccessedResourceIds(
        Operation* op,
        const mlir::TF::ResourceAliasAnalysis::Info& resource_analysis_info,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 17:52:11 UTC 2024
    - 27K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/execution/plan/ExecutionNodeAccessHierarchy.java

                root = root.recordValue(relativePath, new DefaultNodeAccess(node));
            }
        }
    
        /**
         * Records that a node accesses the fileTreeRoot with a filter.
         *
         * The node only accesses children of the fileTreeRoot if they match the filter.
         * This is taken into account when using {@link #getNodesAccessing(String)} and {@link #getNodesAccessing(String, Spec)}.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 12 20:10:34 UTC 2022
    - 6.9K bytes
    - Viewed (0)
  6. src/internal/types/testdata/fixedbugs/issue50782.go

    // Copyright 2022 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Field accesses through type parameters are disabled
    // until we have a more thorough understanding of the
    // implications on the spec. See issue #51576.
    
    package p
    
    // The first example from the issue.
    type Numeric interface {
    	~int | ~int8 | ~int16 | ~int32 | ~int64
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/jvm/JpmsConfiguration.java

    /**
     * These JVM arguments should be passed to any Gradle process that will be running on Java 9+
     * Gradle accesses those packages reflectively. On Java versions 9 to 15, the users will get
     * a warning they can do nothing about. On Java 16+, strong encapsulation of JDK internals is
     * enforced and not having the explicit permissions for reflective accesses will result in runtime exceptions.
     */
    @NonNullApi
    public class JpmsConfiguration {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. test/typeparam/issue50690c.go

    	)
    }
    
    type StructWithPrinter struct {
    	ID       string
    	PrintFn_ func(string)
    }
    
    // Field accesses through type parameters are disabled
    // until we have a more thorough understanding of the
    // implications on the spec. See issue #51576.
    // Use accessor method instead.
    
    func (s StructWithPrinter) PrintFn() func(string) {
    	return s.PrintFn_
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 09 21:26:42 UTC 2022
    - 917 bytes
    - Viewed (0)
  9. test/typeparam/issue50690b.go

    }](message T, obj S) {
    	obj.PrintFn()(message)
    }
    
    type PrintShop[T ~string] struct {
    	ID       T
    	PrintFn_ func(T)
    }
    
    // Field accesses through type parameters are disabled
    // until we have a more thorough understanding of the
    // implications on the spec. See issue #51576.
    // Use accessor method instead.
    
    func (s PrintShop[T]) PrintFn() func(T) { return s.PrintFn_ }
    
    func main() {
    	PrintWithPrinter(
    		"Hello, world.",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 09 21:26:42 UTC 2022
    - 916 bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.h

      // Updates resource access for given `resource_id` and `op` in
      // `per_resource_access_info_` and `op_to_resource_ids_`.
      void UpdateAccess(ResourceId resource_id, Operation* op, bool read_only);
    
      // Returns true iff the last unknown resource access is already indirectly
      // tracked by a previous `resource` access. `read_only` specifies the type of
      // access considered.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 14.8K bytes
    - Viewed (0)
Back to top