Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 263 for Function1 (0.13 sec)

  1. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    // This function will
    //   - add nodes which are not ready or not reachable for a long period of time to a rate-limited
    //     queue so that NoExecute taints can be added by the goroutine running the doNoExecuteTaintingPass function,
    //   - update the PodReady condition Pods according to the state of the Node Ready condition.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  2. src/cmd/dist/test.go

    	pkgs []string // Multiple packages to test
    	pkg  string   // A single package to test
    
    	testFlags []string // Additional flags accepted by this test
    }
    
    // bgCommand returns a go test Cmd and a post-Run flush function. The result
    // will write its output to stdout and stderr. If stdout==stderr, bgCommand
    // ensures Writes are serialized. The caller should call flush() after Cmd exits.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  3. src/bytes/bytes_test.go

    		}
    	}
    	var allocTests = []struct {
    		a []byte
    		b []byte
    		i int
    	}{
    		// case for function Index.
    		{[]byte("000000000000000000000000000000000000000000000000000000000000000000000001"), []byte("0000000000000000000000000000000000000000000000000000000000000000001"), 5},
    		// case for function LastIndex.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

    import java.util.LinkedList;
    import java.util.List;
    import java.util.Map;
    import java.util.Objects;
    import java.util.Optional;
    import java.util.Set;
    import java.util.function.Function;
    import java.util.function.Supplier;
    import java.util.function.UnaryOperator;
    import java.util.regex.Matcher;
    import java.util.regex.Pattern;
    import java.util.stream.Collectors;
    import java.util.stream.StreamSupport;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/lib.go

    		argv = append(argv, fmt.Sprintf("-Wl,--minor-subsystem-version=%d", PeMinimumTargetMinorVersion))
    	case objabi.Haix:
    		argv = append(argv, "-pthread")
    		// prevent ld to reorder .text functions to keep the same
    		// first/last functions for moduledata.
    		argv = append(argv, "-Wl,-bnoobjreorder")
    		// mcmodel=large is needed for every gcc generated files, but
    		// ld still need -bbigtoc in order to allow larger TOC.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    // must be JSONMap. A patch can be created from an original and modified document by
    // calling CreateTwoWayMergeMapPatch.
    // Warning: the original and patch JSONMap objects are mutated by this function and should not be reused.
    func StrategicMergeMapPatch(original, patch JSONMap, dataStruct interface{}) (JSONMap, error) {
    	schema, err := NewPatchMetaFromStruct(dataStruct)
    	if err != nil {
    		return nil, err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/collect/IteratorsTest.java

    import com.google.common.annotations.GwtCompatible;
    import com.google.common.annotations.GwtIncompatible;
    import com.google.common.annotations.J2ktIncompatible;
    import com.google.common.base.Function;
    import com.google.common.base.Predicate;
    import com.google.common.base.Predicates;
    import com.google.common.collect.testing.IteratorFeature;
    import com.google.common.collect.testing.IteratorTester;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 13:01:51 UTC 2024
    - 55.7K bytes
    - Viewed (0)
  8. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

    import java.util.LinkedList;
    import java.util.List;
    import java.util.Map;
    import java.util.Objects;
    import java.util.Optional;
    import java.util.Set;
    import java.util.function.Function;
    import java.util.function.Supplier;
    import java.util.function.UnaryOperator;
    import java.util.regex.Matcher;
    import java.util.regex.Pattern;
    import java.util.stream.Collectors;
    import java.util.stream.StreamSupport;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	// We pass the value of the PRIMARY podIP and list of podIPs down to
    	// generatePodSandboxConfig and generateContainerConfig, which in turn
    	// passes it to various other functions, in order to facilitate functionality
    	// that requires this value (hosts file and downward API) and avoid races determining
    	// the pod IP in cases where a container requires restart but the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/load.go

    // It holds details about individual packages.
    //
    // This variable should only be accessed directly in top-level exported
    // functions. All other functions that require or produce a *loader should pass
    // or return it as an explicit parameter.
    var loaded *loader
    
    // PackageOpts control the behavior of the LoadPackages function.
    type PackageOpts struct {
    	// TidyGoVersion is the Go version to which the go.mod file should be updated
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
Back to top