Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 317 for addsym (0.14 sec)

  1. platforms/native/language-native/src/test/groovy/org/gradle/language/cpp/plugins/CppLibraryPluginTest.groovy

        }
    
        def "adds header zip task when maven-publish plugin is applied"() {
            when:
            project.pluginManager.apply(CppLibraryPlugin)
            project.pluginManager.apply(MavenPublishPlugin)
            project.evaluate()
    
            then:
            def zip = project.tasks.cppHeaders
            zip instanceof Zip
        }
    
        def "adds publications when maven-publish plugin is applied"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/peerproxy/peerproxy.go

    	}
    	svi := informerFactory.Internal().V1alpha1().StorageVersions()
    	h.storageversionInformer = svi.Informer()
    
    	svi.Informer().AddEventHandler(cache.ResourceEventHandlerFuncs{
    		AddFunc: func(obj interface{}) {
    			h.addSV(obj)
    		},
    		UpdateFunc: func(oldObj, newObj interface{}) {
    			h.updateSV(oldObj, newObj)
    		},
    		DeleteFunc: func(obj interface{}) {
    			h.deleteSV(obj)
    		}})
    	return h
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 19 00:36:22 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. src/time/time.go

    	}
    	return t.ext
    }
    
    // unixSec returns the time's seconds since Jan 1 1970 (Unix time).
    func (t *Time) unixSec() int64 { return t.sec() + internalToUnix }
    
    // addSec adds d seconds to the time.
    func (t *Time) addSec(d int64) {
    	if t.wall&hasMonotonic != 0 {
    		sec := int64(t.wall << 1 >> (nsecShift + 1))
    		dsec := sec + d
    		if 0 <= dsec && dsec <= 1<<33-1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  4. platforms/software/platform-base/src/test/groovy/org/gradle/platform/base/plugins/BinaryBasePluginTest.groovy

                model {
                    baseBinary(BinarySpec) {
                    }
                }
            }
    
            then:
            realize("baseBinary") instanceof BinarySpec
        }
    
        def "adds a 'binaries' container to the project model"() {
            when:
            dsl {
                apply plugin: BinaryBasePlugin
            }
    
            then:
            realizeBinaries() != null
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/client/applyconfiguration/apiextensions/v1beta1/customresourcedefinitionstatus.go

    // apply.
    func CustomResourceDefinitionStatus() *CustomResourceDefinitionStatusApplyConfiguration {
    	return &CustomResourceDefinitionStatusApplyConfiguration{}
    }
    
    // WithConditions adds the given value to the Conditions field in the declarative configuration
    // and returns the receiver, so that objects can be build by chaining "With" function invocations.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 28 12:38:10 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/process/JavaForkOptions.java

         */
        void setSystemProperties(Map<String, ?> properties);
    
        /**
         * Adds some system properties to use for the process.
         *
         * @param properties The system properties. Must not be null.
         * @return this
         */
        JavaForkOptions systemProperties(Map<String, ?> properties);
    
        /**
         * Adds a system property to use for the process.
         *
         * @param name The name of the property
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/value.go

    		return fmt.Sprintf(" [lsb=%d,width=%d]", lsb, width)
    	case auxFloat32, auxFloat64:
    		return fmt.Sprintf(" [%g]", v.AuxFloat())
    	case auxString:
    		return fmt.Sprintf(" {%q}", v.Aux)
    	case auxSym, auxCall, auxTyp:
    		if v.Aux != nil {
    			return fmt.Sprintf(" {%v}", v.Aux)
    		}
    		return ""
    	case auxSymOff, auxCallOff, auxTypSize, auxNameOffsetInt8:
    		s := ""
    		if v.Aux != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:40:22 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleExecuter.java

         */
        void assertCanExecute() throws AssertionError;
    
        /**
         * Adds an action to be called immediately before execution, to allow extra configuration to be injected.
         */
        void beforeExecute(Action<? super GradleExecuter> action);
    
        /**
         * Adds an action to be called immediately before execution, to allow extra configuration to be injected.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  9. platforms/software/platform-base/src/main/java/org/gradle/platform/base/plugins/BinaryBasePlugin.java

    /**
     * Base plugin for binaries support.
     *
     * - Adds a {@link BinarySpec} container named {@code binaries} to the project.
     * - Registers the base {@link BinarySpec} type.
     * - For each {@link BinarySpec}, registers a lifecycle task to assemble that binary.
     * - For each {@link BinarySpec}, adds the binary's source sets as its default inputs.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 4K bytes
    - Viewed (0)
  10. test/codegen/mathbits.go

    }
    
    func Add64R(x, y, ci uint64) uint64 {
    	// arm64:"ADDS","ADCS",-"ADD\t",-"CMP"
    	// amd64:"NEGL","ADCQ",-"SBBQ",-"NEGQ"
    	// loong64: "ADDV", -"SGTU"
    	// ppc64x: "ADDC", "ADDE", -"ADDZE"
    	// s390x:"ADDE","ADDC\t[$]-1,"
    	// mips64:"ADDV",-"SGTU"
    	// riscv64: "ADD",-"SLTU"
    	r, _ := bits.Add64(x, y, ci)
    	return r
    }
    
    func Add64M(p, q, r *[3]uint64) {
    	var c uint64
    	r[0], c = bits.Add64(p[0], q[0], c)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:51:17 UTC 2024
    - 19.6K bytes
    - Viewed (0)
Back to top