Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 180 for bar7 (0.19 sec)

  1. pkg/controller/deployment/deployment_controller_test.go

    	_, ctx := ktesting.NewTestContext(t)
    
    	f := newFixture(t)
    
    	// Two Deployments with same labels.
    	d1 := newDeployment("foo", 1, nil, nil, nil, map[string]string{"foo": "bar"})
    	d2 := newDeployment("bar", 1, nil, nil, nil, map[string]string{"foo": "bar"})
    
    	// Two ReplicaSets that match labels for both Deployments,
    	// but have ControllerRefs to make ownership explicit.
    	rs1 := newReplicaSet(d1, "rs1", 1)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  2. pkg/controller/daemon/daemon_controller_test.go

    			t.Fatal(err)
    		}
    		expectSyncDaemonSets(t, manager, ds, podControl, 0, 0, 0)
    	}
    }
    
    func TestDontDoAnythingIfBeingDeletedRace(t *testing.T) {
    	for _, strategy := range updateStrategies() {
    		// Bare client says it IS deleted.
    		ds := newDaemonSet("foo")
    		ds.Spec.UpdateStrategy = *strategy
    		now := metav1.Now()
    		ds.DeletionTimestamp = &now
    		_, ctx := ktesting.NewTestContext(t)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/jvm/building_java_projects.adoc

    How you package and potentially publish your Java project depends on what type of project it is.
    Libraries, applications, web applications and enterprise applications all have differing requirements.
    In this section, we will focus on the bare bones provided by the Java Library Plugin.
    
    By default, the Java Library Plugin provides the `jar` task that packages all the compiled production classes and resources into a single JAR.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/side-effect-analysis-test.mlir

                // expected-remark@above {{ID: 5}}
            }, {
              ^bb0(%barg: tensor<i1>):
                %graph = tf_executor.graph {
                // expected-remark@above {{ID: 9}}
                  %island:2 = tf_executor.island {
                  // expected-remark@above {{ID: 7}}
                    tf_executor.yield %barg : tensor<i1>
                    // expected-remark@above {{ID: 6}}
                  }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 20 04:39:18 UTC 2023
    - 129.7K bytes
    - Viewed (0)
  5. src/crypto/x509/verify_test.go

    	c, err := ParseCertificate(cDER)
    	if err != nil {
    		t.Fatalf("failed to parse certificate: %s", err)
    	}
    
    	if err := c.VerifyHostname("label"); err == nil {
    		t.Fatalf("VerifyHostname unexpected success with bare wildcard SAN")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    This will do the following:
    
    * Add a standard header to the key
    * Rewrite the key using Gradle's own format, which trims the key to the bare minimum
    * Move the key to its sorted location, keeping the file reproducible
    
    [[sec:add-binary-keyring]]
    === Adding keys to the binary keyring
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  7. cmd/testdata/xl-meta-merge.zip

    License v3.0. It is API compatible with Amazon S3 cloud storage service. Use MinIO to build high performance infrastructure for machine learning, analytics and application data workloads. This README provides quickstart instructions on running MinIO on bare metal hardware, including container-based installations. For Kubernetes environments, use the [MinIO Kubernetes Operator](https://github.com/minio/operator/blob/master/README.md). ## Container Installation Use the following commands to run a standalone...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 08 17:50:48 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  8. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    // Submitted by Daniel Netzer <******@****.***>
    *.paywhirl.com
    
    // pcarrier.ca Software Inc: https://pcarrier.ca/
    // Submitted by Pierre Carrier <******@****.***>
    bar0.net
    bar1.net
    bar2.net
    rdv.to
    
    // .pl domains (grandfathered)
    art.pl
    gliwice.pl
    krakow.pl
    poznan.pl
    wroc.pl
    zakopane.pl
    
    // Pantheon Systems, Inc. : https://pantheon.io/
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  9. src/runtime/mgcscavenge.go

    			// Mark the range we're about to scavenge as allocated, because
    			// we don't want any allocating goroutines to grab it while
    			// the scavenging is in progress. Be careful here -- just do the
    			// bare minimum to avoid stepping on our own scavenging stats.
    			p.chunkOf(ci).allocRange(base, npages)
    			p.update(addr, uintptr(npages), true, true)
    
    			// With that done, it's safe to unlock.
    			unlock(p.mheapLock)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // always succeed.  When you downcast (that is, cast a pointer from
    // type Foo to type SubclassOfFoo), static_cast<> isn't safe, because
    // how do you know the pointer is really of type SubclassOfFoo?  It
    // could be a bare Foo, or of type DifferentSubclassOfFoo.  Thus,
    // when you downcast, you should use this macro.  In debug mode, we
    // use dynamic_cast<> to double-check the downcast is legal (we die
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
Back to top