Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 162 for loadsys (0.35 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/initialization/loadercache/DefaultClassLoaderCache.java

                        orphaned.put(entry.getKey(), entry.getValue());
                    }
                }
    
                if (!orphaned.isEmpty()) {
                    throw new IllegalStateException("The following class loaders are orphaned: " + Joiner.on(",").withKeyValueSeparator(":").join(orphaned));
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  2. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/java/SamplesJavaTestingIntegrationTest.groovy

            then:
            secondResult.assertTaskSkipped(":test")
    
            where:
            dsl << ['groovy', 'kotlin']
        }
    
        /**
         * Loads the JUnit XML test results file for the given, named test case. It
         * assumes the file path to that file and loads it using Groovy's XmlSlurper
         * which can then be used to extract information from the XML.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/walk/walk.go

    			// ok: operations that don't require function calls.
    			// Expand as needed.
    		}
    
    		return false
    	})
    }
    
    // itabType loads the _type field from a runtime.itab struct.
    func itabType(itab ir.Node) ir.Node {
    	if itabTypeField == nil {
    		// internal/abi.ITab's Type field
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 20:56:00 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  4. src/debug/buildinfo/buildinfo.go

    // machoExe is the Mach-O (Apple macOS/iOS) implementation of the exe interface.
    type machoExe struct {
    	f *macho.File
    }
    
    func (x *machoExe) ReadData(addr, size uint64) ([]byte, error) {
    	for _, load := range x.f.Loads {
    		seg, ok := load.(*macho.Segment)
    		if !ok {
    			continue
    		}
    		if seg.Addr <= addr && addr <= seg.Addr+seg.Filesz-1 {
    			if seg.Name == "__PAGEZERO" {
    				continue
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/windows/dll_windows.go

    func (e *DLLError) Error() string { return e.Msg }
    
    func (e *DLLError) Unwrap() error { return e.Err }
    
    // A DLL implements access to a single DLL.
    type DLL struct {
    	Name   string
    	Handle Handle
    }
    
    // LoadDLL loads DLL file into memory.
    //
    // Warning: using LoadDLL without an absolute path name is subject to
    // DLL preloading attacks. To safely load a system DLL, use LazyDLL
    // with System set to true, or use LoadLibraryEx directly.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Dec 05 12:36:42 UTC 2020
    - 12K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/config.go

    	SoftFloat      bool        //
    	Race           bool        // race detector enabled
    	BigEndian      bool        //
    	UseFMA         bool        // Use hardware FMA operation
    	unalignedOK    bool        // Unaligned loads/stores are ok
    	haveBswap64    bool        // architecture implements Bswap64
    	haveBswap32    bool        // architecture implements Bswap32
    	haveBswap16    bool        // architecture implements Bswap16
    }
    
    type (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/arch/arm/armasm/plan9x.go

    // address of the symbol containing the target, if any; otherwise it returns "", 0.
    // The reader r should read from the text segment using text addresses
    // as offsets; it is used to display pc-relative loads as constant loads.
    func GoSyntax(inst Inst, pc uint64, symname func(uint64) (string, uint64), text io.ReaderAt) string {
    	if symname == nil {
    		symname = func(uint64) (string, uint64) { return "", 0 }
    	}
    
    	var args []string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfrt/ir/mlrt/tf_mlrt_ops.td

      }];
    }
    
    def IfrtLoadVariableOp: TensorflowMlrt_Op<"ifrt_load_variable", [Pure]> {
      let summary = "Loads a variable tensor as an IFRT array for mlrt";
    
      let description = [{
        This op loads a restored variable tensor as a tensor future. It is a
        replacement of `tf.ReadVariableOp`.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 20:44:15 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  9. src/runtime/mbarrier.go

    // the slot doesn't concurrently change color without the mutator
    // noticing seems prohibitive.
    //
    // Consider the following example where the mutator writes into
    // a slot and then loads the slot's mark bit while the GC thread
    // writes to the slot's mark bit and then as part of scanning reads
    // the slot.
    //
    // Initially both [slot] and [slotmark] are 0 (nil)
    // Mutator thread          GC thread
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/util/config/initconfiguration.go

    	if err := validation.ValidateInitConfiguration(internalcfg).ToAggregate(); err != nil {
    		return nil, err
    	}
    	return internalcfg, nil
    }
    
    // LoadInitConfigurationFromFile loads a supported versioned InitConfiguration from a file, converts it into internal config, defaults it and verifies it.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 05 12:41:16 UTC 2024
    - 17.3K bytes
    - Viewed (0)
Back to top