Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 216 for NOR (0.16 sec)

  1. src/cmd/compile/internal/types2/lookup.go

    //
    //   - If indirect is set, a method with a pointer receiver type was found
    //     but there was no pointer on the path from the actual receiver type to
    //     the method's formal receiver base type, nor was the receiver addressable.
    func LookupFieldOrMethod(T Type, addressable bool, pkg *Package, name string) (obj Object, index []int, indirect bool) {
    	if T == nil {
    		panic("LookupFieldOrMethod on nil type")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  2. src/go/types/lookup.go

    //
    //   - If indirect is set, a method with a pointer receiver type was found
    //     but there was no pointer on the path from the actual receiver type to
    //     the method's formal receiver base type, nor was the receiver addressable.
    func LookupFieldOrMethod(T Type, addressable bool, pkg *Package, name string) (obj Object, index []int, indirect bool) {
    	if T == nil {
    		panic("LookupFieldOrMethod on nil type")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  3. src/go/types/operand.go

    		return newType != nil, IncompatibleAssign
    	}
    	// Vu is typed
    
    	// x's type V and T have identical underlying types
    	// and at least one of V or T is not a named type
    	// and neither V nor T is a type parameter.
    	if Identical(Vu, Tu) && (!hasName(V) || !hasName(T)) && Vp == nil && Tp == nil {
    		return true, 0
    	}
    
    	// T is an interface type, but not a type parameter, and V implements T.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 21:17:10 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. pkg/kubelet/volumemanager/volume_manager_test.go

    	case v1.PersistentVolumeFilesystem:
    		pod.Spec.Containers[0].VolumeMounts = []v1.VolumeMount{
    			{
    				Name:      "vol1",
    				MountPath: "/mnt/vol1",
    			},
    		}
    	default:
    		// The volume is not mounted nor mapped
    	}
    	pv := &v1.PersistentVolume{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: "pvA",
    		},
    		Spec: v1.PersistentVolumeSpec{
    			PersistentVolumeSource: v1.PersistentVolumeSource{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    // copyright notice, this list of conditions and the following disclaimer
    // in the documentation and/or other materials provided with the
    // distribution.
    //     * Neither the name of Google Inc. nor the names of its
    // contributors may be used to endorse or promote products derived from
    // this software without specific prior written permission.
    //
    // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest_pred_impl.h

    // copyright notice, this list of conditions and the following disclaimer
    // in the documentation and/or other materials provided with the
    // distribution.
    //     * Neither the name of Google Inc. nor the names of its
    // contributors may be used to endorse or promote products derived from
    // this software without specific prior written permission.
    //
    // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/build_services.adoc

    ----
    include::{snippetsPath}/plugins/buildServiceUsingServiceReference/groovy/buildSrc/src/main/java/DownloadPlugin.java[]
    ----
    ====
    
    As you can see, there is no need to assign the build service provider to the task, nor to declare explicitly that the task uses the service.
    
    === Using shared build services from configuration actions
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:10 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/canonicalize.td

    class GetI64Attr<int x>: NativeCodeCall<
      "$_builder.getI64IntegerAttr(" # x # ")">;
    
    // The deprecated validate_indices attribute is NOT verified during
    // canonicalization because it is neither supported in the old bridge
    // nor in the reference TF implementation.
    def GatherToV2 : Pat<
      (TF_GatherOp:$src $params, $indices, $ignored_validate_indices),
      (TF_GatherV2Op:$dest $params, $indices, (TF_ConstOp (GetI32Attr<0>)),
        (GetI64Attr<0>)),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 06 18:42:28 UTC 2023
    - 17K bytes
    - Viewed (0)
  9. build-logic/performance-testing/src/main/groovy/gradlebuild.performance-templates.gradle

    performanceTest.registerTestProject("gradleBuildBaseline", RemoteProject) {
        remoteUri = repoRoot(project).asFile.absolutePath
        // Remember to update accordingly when rebasing/squashing
        // Do not use the "Rebase and merge" nor "Squash and merge" Github buttons when merging a PR that change the baseline
        ref = '264bd7744d2e89b2708303cd56bb11bc5003fa7e'
    }
    
    // === Declarative DSL ===
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 15:43:39 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/integtests/ApplicationIntegrationSpec.groovy

    installDist.destinationDir = buildDir
    """
            when:
            runAndFail "installDist"
    
            then:
            result.assertThatCause(startsWith("The specified installation directory '${file('build')}' is neither empty nor does it contain an installation"))
        }
    
        def "startScripts respect OS dependent line separators"() {
            file('build.gradle') << '''
        installDist.destinationDir = buildDir
        '''
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 22:15:44 UTC 2024
    - 15.5K bytes
    - Viewed (0)
Back to top