Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 68 for experts (0.64 sec)

  1. pkg/controller/volume/attachdetach/cache/actual_state_of_world_test.go

    	if exists {
    		t.Fatalf("AddVolumeNode_Positive_NewVolumeNewNodeWithFalseAttached failed. Actual: <node %q exist> Expect: <node does not exist in the reportedAsAttached map", nodeName)
    	}
    
    	nodes := asw.GetNodesForAttachedVolume(volumeName)
    	if len(nodes) > 0 {
    		t.Fatalf("AddVolumeNode_Positive_NewVolumeNewNodeWithFalseAttached failed. Expect no nodes returned.")
    	}
    
    	// Add the volume to the node second time with attached set to true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 07:35:17 UTC 2024
    - 66.1K bytes
    - Viewed (0)
  2. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

                exportedArtifacts.addAll(extension.getExportedArtifacts());
                exportedPackages.addAll(extension.getExportedPackages());
            }
    
            final CoreExports exports = new CoreExports(containerRealm, exportedArtifacts, exportedPackages);
    
            DefaultPlexusContainer container = new DefaultPlexusContainer(cc, new AbstractModule() {
                @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  3. src/go/parser/parser.go

    		}
    	}
    	p.error(pos, msg)
    }
    
    func (p *parser) expect(tok token.Token) token.Pos {
    	pos := p.pos
    	if p.tok != tok {
    		p.errorExpected(pos, "'"+tok.String()+"'")
    	}
    	p.next() // make progress
    	return pos
    }
    
    // expect2 is like expect, but it returns an invalid position
    // if the expected token is not found.
    func (p *parser) expect2(tok token.Token) (pos token.Pos) {
    	if p.tok == tok {
    		pos = p.pos
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

            given:
            buildFile << """
                task copy (type: Copy) {
                    // two.a expects "one" to be defined
                    from('src/two/two.a')
                    into('dest')
                    // expect "two" to be defined as well
                    filter { line -> '\$two ' + line }
                    expand("notused": "notused")
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    //
    //    * {ASSERT|EXPECT}_EQ(expected, actual): Tests that expected == actual
    //    * {ASSERT|EXPECT}_NE(v1, v2):           Tests that v1 != v2
    //    * {ASSERT|EXPECT}_LT(v1, v2):           Tests that v1 < v2
    //    * {ASSERT|EXPECT}_LE(v1, v2):           Tests that v1 <= v2
    //    * {ASSERT|EXPECT}_GT(v1, v2):           Tests that v1 > v2
    //    * {ASSERT|EXPECT}_GE(v1, v2):           Tests that v1 >= v2
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    //
    //    * {ASSERT|EXPECT}_EQ(expected, actual): Tests that expected == actual
    //    * {ASSERT|EXPECT}_NE(v1, v2):           Tests that v1 != v2
    //    * {ASSERT|EXPECT}_LT(v1, v2):           Tests that v1 < v2
    //    * {ASSERT|EXPECT}_LE(v1, v2):           Tests that v1 <= v2
    //    * {ASSERT|EXPECT}_GT(v1, v2):           Tests that v1 > v2
    //    * {ASSERT|EXPECT}_GE(v1, v2):           Tests that v1 >= v2
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  7. pkg/apis/admissionregistration/types.go

    	// The timeout value must be between 1 and 30 seconds.
    	// +optional
    	TimeoutSeconds *int32
    
    	// AdmissionReviewVersions is an ordered list of preferred `AdmissionReview`
    	// versions the Webhook expects. API server will try to use first version in
    	// the list which it supports. If none of the versions specified in this list
    	// supported by API server, validation will fail for this object.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/admissionregistration/v1beta1/generated.proto

      // Default to 30 seconds.
      // +optional
      optional int32 timeoutSeconds = 7;
    
      // AdmissionReviewVersions is an ordered list of preferred `AdmissionReview`
      // versions the Webhook expects. API server will try to use first version in
      // the list which it supports. If none of the versions specified in this list
      // supported by API server, validation will fail for this object.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  9. cmd/sts-handlers_test.go

    		})
    		if err != nil {
    			c.Fatalf("export %d: Unable to attach group policy: %v", caseNum, err)
    		}
    	}
    
    	contentReader, err := s.adm.ExportIAM(ctx)
    	if err != nil {
    		c.Fatalf("export %d: Unable to export IAM: %v", caseNum, err)
    	}
    	defer contentReader.Close()
    
    	expContent, err := io.ReadAll(contentReader)
    	if err != nil {
    		c.Fatalf("export %d: Unable to read exported content: %v", caseNum, err)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // Default to 10 seconds.
      // +optional
      optional int32 timeoutSeconds = 7;
    
      // AdmissionReviewVersions is an ordered list of preferred `AdmissionReview`
      // versions the Webhook expects. API server will try to use first version in
      // the list which it supports. If none of the versions specified in this list
      // supported by API server, validation will fail for this object.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
Back to top