Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 191 for worst (0.05 sec)

  1. src/internal/types/testdata/fixedbugs/issue51229.go

    func g4[M ~map[string]S, E any, S ~[]E](m M) {}
    func g5[E any, M ~map[string]S, S ~[]E](m M) {}
    
    func _(m map[string][]byte) {
    	g0(m)
    	g1(m)
    	g2(m)
    	g3(m)
    	g4(m)
    	g5(m)
    }
    
    // Worst-case scenario.
    // There are 10 unknown type parameters. In each iteration of
    // constraint type inference we infer one more, from right to left.
    // Each iteration looks repeatedly at all 11 type parameters,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  2. security/pkg/server/ca/server.go

    		ca:             ca,
    		monitoring:     newMonitoringMetrics(),
    	}
    
    	if len(features.CATrustedNodeAccounts) > 0 {
    		// TODO: do we need some way to delayed readiness until this is synced? Probably
    		// Worst case is we deny some requests though which are retried
    		server.nodeAuthorizer = NewMulticlusterNodeAuthenticator(features.CATrustedNodeAccounts, controller)
    	}
    	return server, nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 17:35:26 UTC 2024
    - 8K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/RegularContiguousSet.java

      }
    
      @Override
      public boolean contains(@CheckForNull Object object) {
        if (object == null) {
          return false;
        }
        try {
          @SuppressWarnings("unchecked") // The worst case is usually CCE, which we catch.
          C c = (C) object;
          return range.contains(c);
        } catch (ClassCastException e) {
          return false;
        }
      }
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  4. tensorflow/cc/ops/while_loop.cc

      // defining the frame) and that they are executed once per loop iteration.
      //
      // TODO(skyewm): the control dep will be added to all nodes in the cond graph.
      // This is at best unnecessary, and at worst may prevent different parts of
      // different loop iterations from executing in parallel.
      Scope cond_scope =
          scope.NewSubScope("cond").WithControlDependencies(inputs[0]);
      Output raw_cond_out;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 01:01:21 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  5. src/encoding/ascii85/ascii85.go

    			if nb == 1 {
    				return 0, 0, CorruptInputError(len(src))
    			}
    			for i := nb; i < 5; i++ {
    				// The short encoding truncated the output value.
    				// We have to assume the worst case values (digit 84)
    				// in order to ensure that the top bits are correct.
    				v = v*85 + 84
    			}
    			for i := 0; i < nb-1; i++ {
    				dst[ndst] = byte(v >> 24)
    				v <<= 8
    				ndst++
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  6. src/runtime/debug/garbage_test.go

    	//
    	// Add a little more slack too if the page size is bigger than the runtime page size.
    	// "big" could end up unaligned on its ends, forcing the scavenger to skip at worst
    	// 2x pages.
    	slack := uint64(bigBytes / 2)
    	pageSize := uint64(os.Getpagesize())
    	if pageSize > 8<<10 {
    		slack += pageSize * 2
    	}
    	if slack > bigBytes {
    		// We basically already checked this.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 19 14:30:00 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  7. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/generator/tasks/NativeProjectWithDepsGeneratorTask.groovy

            }
        }
    
        /**
         * Number of components to generate per project
         */
        @Input
        int numberOfComponents = 4
    
        /**
         * Should we generate a deep and wide hierarchy ("worst case" scenario) or only a wide hierarchy?
         * <p>
         *     With a wide hierarchy, each group of libraries depend only on each other. There's a limited depth (~7) and
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 07 13:12:26 UTC 2021
    - 11.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/common_caching_problems.adoc

    The configuration file might change infrequently, or only change when some other (correctly tracked) input changes as well.
    The worst that could happen is that your task doesn't execute when it should.
    Developers can always re-run the build with `clean`, and "fix" their builds for the price of a slow rebuild.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  9. src/internal/diff/diff.go

    // Diff returns a nil slice (no output).
    //
    // Unix diff implementations typically look for a diff with
    // the smallest number of lines inserted and removed,
    // which can in the worst case take time quadratic in the
    // number of lines in the texts. As a result, many implementations
    // either can be made to run for a long time or cut off the search
    // after a predetermined amount of work.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 14:13:04 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  10. src/runtime/mpagealloc_64bit.go

    	// maximum heap address. We don't do this for the summary structure
    	// because it's quite large and a discontiguous heap could cause a
    	// lot of memory to be used. In this situation, the worst case overhead
    	// is in the single-digit MiB if we map the whole thing.
    	//
    	// The base address of the backing store is always page-aligned,
    	// because it comes from the OS, so it's sufficient to align the
    	// index.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 03 11:00:10 UTC 2024
    - 9.3K bytes
    - Viewed (0)
Back to top