Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 188 for minimizeC (0.25 sec)

  1. src/net/sendfile_unix_alt.go

    package net
    
    import (
    	"internal/poll"
    	"io"
    	"io/fs"
    	"syscall"
    )
    
    const supportsSendfile = true
    
    // sendFile copies the contents of r to c using the sendfile
    // system call to minimize copies.
    //
    // if handled == true, sendFile returns the number (potentially zero) of bytes
    // copied and any non-EOF error.
    //
    // if handled == false, sendFile performed no work.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. src/runtime/sigqueue.go

    // We access them atomically to minimize the race between setting them
    // in the goroutine calling os/signal and the signal handler,
    // which may be running in a different thread. That race is unavoidable,
    // as there is no connection between handling a signal and receiving one,
    // but atomic instructions should minimize it.
    var sig struct {
    	note       note
    	mask       [(_NSIG + 31) / 32]uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/test_fuzz_mutator.txt

    go run check_logs.go fuzz fuzz.worker
    
    # TODO(b/181800488): remove -parallel=1, here and below. For now, when a
    # crash is found, all workers keep running, wasting resources and reducing
    # the number of executions available to the minimizer, increasing flakiness.
    
    # Test that the mutator is good enough to find several unique mutations.
    ! go test -fuzz=FuzzMutator -parallel=1 -fuzztime=100x mutator_test.go
    ! stdout '^ok'
    stdout FAIL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/RegularImmutableSet.java

      }
    
      @Override
      public int size() {
        return size;
      }
    
      // We're careful to put only E instances into the array in the mainline.
      // (In the backport, we don't need this suppression, but we keep it to minimize diffs.)
      @SuppressWarnings("unchecked")
      @Override
      public UnmodifiableIterator<E> iterator() {
        return asList().iterator();
      }
    
      @Override
      @Nullable
      Object[] internalArray() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. cluster/addons/calico-policy-controller/calico-node-daemonset.yaml

            k8s-app: calico-node
        spec:
          priorityClassName: system-node-critical
          nodeSelector:
            projectcalico.org/ds-ready: "true"
          hostNetwork: true
          serviceAccountName: calico
          # Minimize downtime during a rolling upgrade or deletion; tell Kubernetes to do a "force
          # deletion": https://kubernetes.io/docs/concepts/workloads/pods/pod/#termination-of-pods.
          terminationGracePeriodSeconds: 0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 25 12:18:44 UTC 2021
    - 6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/telemetry/internal/upload/Doc.txt

        otherwise the same contents. The X values are very close to the front
        of the file. Assuming reasonable file system semantics one version of
        the file will be written. To minimize this, just before writing reports
        the code checks again to see if they exist.
    1C. Once there is an existing well-formed file YYYY-MM-DD.json in localdir
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/test_fuzz_fuzztime.txt

    			if err := os.WriteFile(name, nil, 0666); err != nil {
    				t.Fatal(err)
    			}
    			n++
    		}
    		if !bytes.Equal(b, seed) {  // this should happen right away
    			crashFound = true
    			t.Error("minimize this!")
    		}
    	})
    }
    -- check_file_count.go --
    // +build ignore
    
    package main
    
    import (
    	"fmt"
    	"os"
    	"strconv"
    )
    
    func main() {
    	dir, err := os.ReadDir(os.Args[1])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 01 20:09:52 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. manifests/charts/UPDATING-CHARTS.md

    If all fields are exposed in `values.yaml`, we end up with an massive API that is also likely worse than just using the Kubernetes API directly.
    
    To avoid this, the project attempts to minimize additions to the `values.yaml` API where possible.
    
    If the change is a dynamic runtime configuration, it probably belongs in the [MeshConfig API](https://github.com/istio/api/blob/master/mesh/v1alpha1/config.proto).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 18:28:55 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  9. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/internal/IdeaDependenciesOptimizer.java

    import org.gradle.plugins.ide.idea.model.ModuleLibrary;
    import org.gradle.plugins.ide.idea.model.SingleEntryModuleLibrary;
    
    import java.util.Collection;
    import java.util.Iterator;
    import java.util.Map;
    
    
    /**
     * Minimizes a set of IDEA dependencies based on knowledge about how IDEA handles compilation and runtime of main and test classes:
     *
     * <ul>
     * <li> COMPILE dependencies are visible everywhere. </li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  10. src/strings/builder.go

    package strings
    
    import (
    	"internal/abi"
    	"internal/bytealg"
    	"unicode/utf8"
    	"unsafe"
    )
    
    // A Builder is used to efficiently build a string using [Builder.Write] methods.
    // It minimizes memory copying. The zero value is ready to use.
    // Do not copy a non-zero Builder.
    type Builder struct {
    	addr *Builder // of receiver, to detect copies by value
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:09:59 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top