Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 424 for loadOps (0.11 sec)

  1. src/cmd/link/internal/loadxcoff/ldxcoff.go

    	ret := ((*bio.Reader)(f)).MustSeek(off, 0)
    	if ret < 0 {
    		return 0, errors.New("fail to seek")
    	}
    	n, err := f.Read(p)
    	if err != nil {
    		return 0, err
    	}
    	return n, nil
    }
    
    // loads the Xcoff file pn from f.
    // Symbols are written into loader, and a slice of the text symbols is returned.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/process/internal/worker/child/ApplicationClassesInSystemClassLoaderWorkerImplementationFactory.java

    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.Collection;
    import java.util.List;
    import java.util.Set;
    import java.util.stream.Collectors;
    
    /**
     * A factory for a worker process which loads the application classes using the JVM's system ClassLoader.
     *
     * <p>Class loader hierarchy:</p>
     * <pre>
     *                       jvm bootstrap
     *                             |
     *                             |
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 10:09:51 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modfetch/zip_sum_test/zip_sum_test.go

    // Package zip_sum_test tests that the module zip files produced by modfetch
    // have consistent content sums. Ideally the zip files themselves are also
    // stable over time, though this is not strictly necessary.
    //
    // This test loads a table from testdata/zip_sums.csv. The table has columns
    // for module path, version, content sum, and zip file hash. The table
    // includes a large number of real modules. The test downloads these modules
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 18 19:33:59 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  4. cmd/event-notification.go

    			if onlyActive {
    				if _, err := target.IsActive(); err != nil {
    					continue
    				}
    			}
    			arns = append(arns, targetID.ToARN(region).String())
    		}
    	}
    
    	return arns
    }
    
    // Loads notification policies for all buckets into EventNotifier.
    func (evnot *EventNotifier) set(bucket BucketInfo, meta BucketMetadata) {
    	config := meta.notificationConfig
    	if config == nil {
    		return
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  5. pkg/volume/csi/csi_util.go

    		return errors.New(log("failed to save volume data file %s: %v", dataFilePath, err))
    	}
    	klog.V(4).Info(log("volume data file saved successfully [%s]", dataFilePath))
    	return nil
    }
    
    // loadVolumeData loads volume info from specified json file/location
    func loadVolumeData(dir string, fileName string) (map[string]string, error) {
    	// remove /mount at the end
    	dataFileName := filepath.Join(dir, fileName)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 28 17:14:00 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewrite.go

    	// has more than one use.
    	if load.Uses != 1 {
    		return false
    	}
    
    	mem := load.MemoryArg()
    
    	// We need the load's memory arg to still be alive at target. That
    	// can't be the case if one of target's args depends on a memory
    	// state that is a successor of load's memory arg.
    	//
    	// For example, it would be invalid to merge load into target in
    	// the following situation because newmem has killed oldmem
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/ToolingApiRemoteIntegrationTest.groovy

                launcher.run()
            }
    
            then:
            toolingApi.gradleUserHomeDir.file("wrapper/dists/custom-dist").assertIsDir().listFiles().size() == 1
        }
    
        def "loads credentials from gradle.properties"() {
            given:
            server.withBasicAuthentication("username", "password")
            file("gradle.properties") << """
                systemProp.gradle.wrapperUser=username
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/ppc64/doc.go

    CR0 is the default for fixed-point instructions; CR1 for floating point; CR6 for
    vector instructions.
    
    Example:
    
    	ANDCC R3, R4, R5		<=>	and. r5, r3, r4 (set CR0)
    
    4. Loads and stores from memory
    
    In Go asm, opcodes starting with 'MOV' indicate a load or store. When the target
    is a memory reference, then it is a store; when the target is a register and the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	// Atomic operations used for semantically inlining sync/atomic and
    	// internal/runtime/atomic. Atomic loads return a new memory so that
    	// the loads are properly ordered with respect to other loads and
    	// stores.
    	{name: "AtomicLoad8", argLength: 2, typ: "(UInt8,Mem)"},                                    // Load from arg0.  arg1=memory.  Returns loaded value and new memory.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  10. hack/lib/version.sh

    KUBE_GIT_COMMIT='${KUBE_GIT_COMMIT-}'
    KUBE_GIT_TREE_STATE='${KUBE_GIT_TREE_STATE-}'
    KUBE_GIT_VERSION='${KUBE_GIT_VERSION-}'
    KUBE_GIT_MAJOR='${KUBE_GIT_MAJOR-}'
    KUBE_GIT_MINOR='${KUBE_GIT_MINOR-}'
    EOF
    }
    
    # Loads up the version variables from file $1
    kube::version::load_version_vars() {
      local version_file=${1-}
      [[ -n ${version_file} ]] || {
        echo "!!! Internal error.  No file specified in kube::version::load_version_vars"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 08:22:09 UTC 2024
    - 7.1K bytes
    - Viewed (0)
Back to top