Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 83 for conjunction (0.14 sec)

  1. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/caching_android_projects.adoc

    The <<caching_java_projects.adoc#annotation_processors,advice above>> for pure Java projects also applies to Android projects.
    However, if you are using annotation processors (such as Dagger2 or Butterknife) in conjunction with Kotlin and the kotlin-kapt plugin, you should know that before Kotlin 1.3.30 kapt https://youtrack.jetbrains.com/issue/KT-27675[was not cached by default].
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 12:54:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/annotations/DefaultTypeMetadataStore.java

                                .severity(ERROR)
                                .details("This modifier is used in conjunction with a property of type '" + propertyType.getSimpleName() + "' but this doesn't have semantics")
                                .solution("Remove the '@" + annotationType.getSimpleName() + "' annotation"));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:36 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  3. internal/s3select/sql/parser.go

    type ListExpr struct {
    	Elements []*Expression `parser:"\"(\" @@ ( \",\" @@ )* \")\" | \"[\" @@ ( \",\" @@ )* \"]\""`
    }
    
    // AndCondition represents logical conjunction of clauses
    type AndCondition struct {
    	Condition []*Condition `parser:"@@ ( \"AND\" @@ )*"`
    }
    
    // Condition represents a negation or a condition operand
    type Condition struct {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  4. api/maven-api-settings/src/main/mdo/settings.mdo

              <type>String</type>
            </field>
            <field>
              <name>password</name>
              <version>1.0.0+</version>
              <description>
                The password used in conjunction with the username to authenticate.
              </description>
              <type>String</type>
            </field>
            <field>
              <name>privateKey</name>
              <version>1.0.0+</version>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Feb 17 18:40:11 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/testng/TestNGOptions.java

        public void setTestName(String testName) {
            this.testName = testName;
        }
    
        /**
         * The suiteXmlFiles to use for running TestNG.
         *
         * Note: The suiteXmlFiles can be used in conjunction with the suiteXmlBuilder.
         */
        @InputFiles
        @PathSensitive(PathSensitivity.NONE)
        public List<File> getSuiteXmlFiles() {
            return suiteXmlFiles;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  6. apache-maven/src/main/appended-resources/licenses/EPL-1.0.txt

    a Contributor if it was added to the Program by such Contributor itself or
    anyone acting on such Contributor's behalf. Contributions do not include additions
    to the Program which: (i) are separate modules of software distributed in
    conjunction with the Program under their own license agreement, and (ii) are
    not derivative works of the Program.
    
       "Contributor" means any person or entity that distributes the Program.
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Sep 17 05:50:12 UTC 2018
    - 11.1K bytes
    - Viewed (0)
  7. maven-core/plugin-manager.txt

     * know which version of library the class comes from
     */
    
    This document outlines the concerns of a general plugin manager that would be used in conjunction with any Plexus-based application. The following outlined concerns are an attempt to describe what a plugin manager would need to do for Maven and for Nexus.
    
    h2. Concerns for the plugin manager
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jul 18 22:45:13 UTC 2022
    - 12.9K bytes
    - Viewed (0)
  8. src/net/tcpsock.go

    // separately nor changing Count (which is usually 10) is supported.
    // Therefore, it's recommended to set both Idle and Interval to non-negative values
    // in conjunction with a -1 for Count on those old Windows if you intend to customize
    // the TCP keep-alive settings.
    // By contrast, if only one of Idle and Interval is set to a non-negative value,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 03:10:07 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  9. src/syscall/exec_plan9.go

    		uintptr(unsafe.Pointer(&argvp[0])),
    		0)
    
    	return e1
    }
    
    // WaitProcess waits until the pid of a
    // running process is found in the queue of
    // wait messages. It is used in conjunction
    // with [ForkExec]/[StartProcess] to wait for a
    // running process to exit.
    func WaitProcess(pid int, w *Waitmsg) (err error) {
    	procs.Lock()
    	ch := procs.waits[pid]
    	procs.Unlock()
    
    	var wmsg *waitErr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. pkg/kubelet/network/dns/dns.go

    	ClusterDomain string
    	// The path to the DNS resolver configuration file used as the base to generate
    	// the container's DNS resolver configuration file. This can be used in
    	// conjunction with clusterDomain and clusterDNS.
    	ResolverConfig string
    }
    
    // NewConfigurer returns a DNS configurer for launching pods.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 04 11:37:10 UTC 2023
    - 16.1K bytes
    - Viewed (0)
Back to top