Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 109 for deduplicated (0.17 sec)

  1. maven-core/src/test/resources-project-builder/plugin-config-attributes/wo-plugin-mgmt/pom.xml

      <artifactId>test1</artifactId>
      <version>1.0-SNAPSHOT</version>
    
      <name>Maven Integration Test :: MNG-4053</name>
      <description>
        Verify that attributes in plugin configuration elements are not erroneously duplicated to other elements when
        no plugin management is used.
      </description>
    
      <build>
        <!-- NOTE: This test does not use plugin management for the IT plugin -->
        <plugins>
          <plugin>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/m5/ToolingApiHonorsProjectCustomizationsCrossVersionSpec.groovy

            EclipseProject api = children[0]
            assert api.name == 'gradle-api'
            EclipseProject impl = children[1]
            assert impl.name == 'gradle-impl'
        }
    
        def "should deduplicate project names"() {
            file('build.gradle').text = '''
    allprojects {
        apply plugin: 'java'
    }
    '''
            createDirs("services", "services/api", "contrib", "contrib/api")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  3. src/text/template/example_test.go

    	//
    	// Best wishes,
    	// Josie
    	//
    	// Dear Cousin Rodney,
    	//
    	// It is a shame you couldn't make it to the wedding.
    	//
    	// Best wishes,
    	// Josie
    }
    
    // The following example is duplicated in html/template; keep them in sync.
    
    func ExampleTemplate_block() {
    	const (
    		master  = `Names:{{block "list" .}}{{"\n"}}{{range .}}{{println "-" .}}{{end}}{{end}}`
    		overlay = `{{define "list"}} {{join . ", "}}{{end}} `
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 29 00:17:40 UTC 2015
    - 2.4K bytes
    - Viewed (0)
  4. maven-core/src/test/resources-project-builder/plugin-config-attributes/w-plugin-mgmt/pom.xml

      <artifactId>test2</artifactId>
      <version>1.0-SNAPSHOT</version>
    
      <name>Maven Integration Test :: MNG-4053</name>
      <description>
        Verify that attributes in plugin configuration elements are not erroneously duplicated to other elements when
        plugin management is used.
      </description>
    
      <build>
        <!-- NOTE: This test used plugin management for the IT plugin -->
        <pluginManagement>
          <plugins>
            <plugin>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 2K bytes
    - Viewed (0)
  5. errors.go

    	ErrPreloadNotAllowed = errors.New("preload is not allowed when count is used")
    	// ErrDuplicatedKey occurs when there is a unique key constraint violation
    	ErrDuplicatedKey = errors.New("duplicated key not allowed")
    	// ErrForeignKeyViolated occurs when there is a foreign key constraint violation
    	ErrForeignKeyViolated = errors.New("violates foreign key constraint")
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Apr 26 02:53:17 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/certificates/v1alpha1/generated.proto

      // contain duplicate certificates, or that use PEM block headers.
      //
      // Users of ClusterTrustBundles, including Kubelet, are free to reorder and
      // deduplicate certificate blocks in this file according to their own logic,
      // as well as to drop PEM block headers and inter-block data.
      optional string trustBundle = 2;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. maven-core/src/test/resources-project-builder/plugin-config-attributes/w-profile/pom.xml

      <artifactId>test3</artifactId>
      <version>1.0-SNAPSHOT</version>
    
      <name>Maven Integration Test :: MNG-4053</name>
      <description>
        Verify that attributes in plugin configuration elements are not erroneously duplicated to other elements when
        plugin management and a profile are used.
      </description>
    
      <build>
        <!-- NOTE: This test used plugin management for the IT plugin -->
        <pluginManagement>
          <plugins>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 2.4K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/util/env_test.go

    	var tests = []struct {
    		name      string
    		proxyEnv  []kubeadmapi.EnvVar
    		extraEnv  []kubeadmapi.EnvVar
    		mergedEnv []v1.EnvVar
    	}{
    		{
    			name: "normal case without duplicated env",
    			proxyEnv: []kubeadmapi.EnvVar{
    				{
    					EnvVar: v1.EnvVar{Name: "Foo1", Value: "Bar1"},
    				},
    				{
    					EnvVar: v1.EnvVar{Name: "Foo2", Value: "Bar2"},
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 12 09:09:19 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. src/runtime/cgo/handle_test.go

    		h1 := NewHandle(tt.v1)
    		h2 := NewHandle(tt.v2)
    
    		if uintptr(h1) == 0 || uintptr(h2) == 0 {
    			t.Fatalf("NewHandle returns zero")
    		}
    
    		if uintptr(h1) == uintptr(h2) {
    			t.Fatalf("Duplicated Go values should have different handles, but got equal")
    		}
    
    		h1v := h1.Value()
    		h2v := h2.Value()
    		if !reflect.DeepEqual(h1v, h2v) || !reflect.DeepEqual(h1v, tt.v1) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/tuple.go

    				t := selector.copyInto(tuple.Block)
    				selector.copyOf(t)
    				selectors[key] = t
    				continue
    			}
    
    			// The selector is in the target block. Add it to the map so it
    			// cannot be duplicated.
    			selectors[key] = selector
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 26 02:52:33 UTC 2021
    - 2K bytes
    - Viewed (0)
Back to top