Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 159 for gids (0.07 sec)

  1. pkg/registry/batch/job/strategy_test.go

    	}
    }
    
    func TestJobStrategy_GarbageCollectionPolicy(t *testing.T) {
    	// Make sure we correctly implement the interface.
    	// Otherwise a typo could silently change the default.
    	var gcds rest.GarbageCollectionDeleteStrategy = Strategy
    	if got, want := gcds.DefaultGarbageCollectionPolicy(genericapirequest.NewContext()), rest.DeleteDependents; got != want {
    		t.Errorf("DefaultGarbageCollectionPolicy() = %#v, want %#v", got, want)
    	}
    
    	var (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 101.5K bytes
    - Viewed (0)
  2. src/image/gif/writer.go

    	e := encoder{g: *g}
    	// The GIF.Disposal, GIF.Config and GIF.BackgroundIndex fields were added
    	// in Go 1.5. Valid Go 1.4 code, such as when the Disposal field is omitted
    	// in a GIF struct literal, should still produce valid GIFs.
    	if e.g.Disposal != nil && len(e.g.Image) != len(e.g.Disposal) {
    		return errors.New("gif: mismatched image and disposal lengths")
    	}
    	if e.g.Config == (image.Config{}) {
    		p := g.Image[0].Bounds().Max
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:38:09 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/test_kit.adoc

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[test_kit]]
    = Testing Build Logic with TestKit
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/optimizing-performance/gradle_daemon.adoc

    ----
    $ gradle --stop
    ----
    
    This terminates all Daemon processes started with the same version of Gradle used to execute the command.
    
    You can also kill Daemons manually with your operating system.
    To find the PIDs for all Daemons regardless of Gradle version, see <<gradle_daemon.adoc#find_all_daemons,Find Daemons>>.
    
    [[sec:daemon_jvm_criteria]]
    == Configuring the JVM to be used
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:43:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  5. pilot/pkg/security/authn/policy_applier.go

    	// If there are more than one provider, filter should OR of
    	// {P1, P2 .., AND of {OR{P1, allow_missing}, OR{P2, allow_missing} ...}}
    	// where the innerAnd enforce a token, if provided, must be valid, and the
    	// outer OR aids the case where providers share the same location (as
    	// it will always fail with the innerAND).
    	outterOrList = append(outterOrList, &envoy_jwt.JwtRequirement{
    		RequiresType: &envoy_jwt.JwtRequirement_RequiresAll{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  6. src/image/gif/writer_test.go

    				i, m.Bounds(), width, height)
    		}
    		g0.Image[i] = m
    	}
    	// The GIF.Disposal, GIF.Config and GIF.BackgroundIndex fields were added
    	// in Go 1.5. Valid Go 1.4 or earlier code should still produce valid GIFs.
    	//
    	// On the following line, color.Model is an interface type, and
    	// color.Palette is a concrete (slice) type.
    	globalColorModel, backgroundIndex := color.Model(color.Palette(nil)), uint8(0)
    	if useGlobalColorModel {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 19K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/dwarfgen/dwinl.go

    	c, m := rangesContainsAll(parentRanges, calleeRanges)
    	if !c {
    		base.Fatalf("** malformed inlined routine range in %s: caller %s callee %s II=%d %s\n", funcName, caller, callee, idx, m)
    	}
    
    	// Now visit kids
    	for _, k := range ic.Children {
    		checkInlCall(funcName, inlCalls, funcSize, k, idx)
    	}
    }
    
    // unifyCallRanges ensures that the ranges for a given inline
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:45:07 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  8. guava-tests/benchmark/com/google/common/util/concurrent/MonitorBasedArrayBlockingQueue.java

        this(capacity, fair);
        if (capacity < c.size()) throw new IllegalArgumentException();
    
        for (E e : c) add(e);
      }
    
      @SuppressWarnings("unchecked") // please don't try this home, kids
      private static <E> E[] newEArray(int capacity) {
        return (E[]) new Object[capacity];
      }
    
      /**
       * Inserts the specified element at the tail of this queue if it is possible to do so immediately
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 19 19:24:36 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/core-plugins/build_init_plugin.adoc

    * Compilation speed increase - Reducing the number of transitive dependencies leaked from a project aids the compiler process of its consumers as there are fewer libraries to classload and fewer namespaces for Gradle's incremental compiler to track.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  10. android/guava-tests/benchmark/com/google/common/util/concurrent/MonitorBasedArrayBlockingQueue.java

        this(capacity, fair);
        if (capacity < c.size()) throw new IllegalArgumentException();
    
        for (E e : c) add(e);
      }
    
      @SuppressWarnings("unchecked") // please don't try this home, kids
      private static <E> E[] newEArray(int capacity) {
        return (E[]) new Object[capacity];
      }
    
      /**
       * Inserts the specified element at the tail of this queue if it is possible to do so immediately
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 19 19:24:36 UTC 2023
    - 22.5K bytes
    - Viewed (0)
Back to top