Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. pkg/istio-agent/grpcxds/grpc_bootstrap.go

    			cfg, ok := provider.Config.(FileWatcherCertProviderConfig)
    			if !ok {
    				return nil
    			}
    			return &cfg
    		}
    	}
    	return nil
    }
    
    // LoadBootstrap loads a Bootstrap from the given file path.
    func LoadBootstrap(file string) (*Bootstrap, error) {
    	data, err := os.ReadFile(file)
    	if err != nil {
    		return nil, err
    	}
    	b := &Bootstrap{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 7.1K 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. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  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. 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)
  10. cmd/bucket-metadata.go

    func (b *BucketMetadata) SetCreatedAt(createdAt time.Time) {
    	if b.Created.IsZero() {
    		b.Created = UTCNow()
    	}
    	if !createdAt.IsZero() {
    		b.Created = createdAt.UTC()
    	}
    }
    
    // Load - loads the metadata of bucket by name from ObjectLayer api.
    // If an error is returned the returned metadata will be default initialized.
    func readBucketMetadata(ctx context.Context, api ObjectLayer, name string) (BucketMetadata, error) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 16.7K bytes
    - Viewed (0)
Back to top