Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 39 for NOR (0.02 sec)

  1. testing/soak/src/integTest/kotlin/org/gradle/kotlin/dsl/caching/ScriptCachingIntegrationTest.kt

                        assertNoScriptCompile(rootBuildFile.stage1)
                        assertNoScriptCompile(rootBuildFile.stage2)
                    }
                    // then: no compilation nor class loading
                    compilationCache {
                        hits(leftBuildFile, rootBuildFile, rightBuildFile)
                    }
                    classLoadingCache {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:33:23 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/ImmutableRangeSet.java

        }
        Range<C> span = span().canonical(domain);
        if (!span.hasLowerBound()) {
          // according to the spec of canonical, neither this ImmutableRangeSet nor
          // the range have a lower bound
          throw new IllegalArgumentException(
              "Neither the DiscreteDomain nor this range set are bounded below");
        } else if (!span.hasUpperBound()) {
          try {
            domain.maxValue();
          } catch (NoSuchElementException e) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheGroovyIntegrationTest.groovy

            classFile.isFile()
            testClassFile.isFile()
            testResults.isDirectory()
    
            and:
            assertTestsExecuted("ThingTest", "ok")
        }
    
        def "build on Groovy project without sources nor groovy dependency"() {
            given:
            def configurationCache = newConfigurationCacheFixture()
            buildFile << """
                plugins { id 'groovy' }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/diagnostic.go

    // A SuggestedFix is a code change associated with a Diagnostic that a
    // user can choose to apply to their code. Usually the SuggestedFix is
    // meant to fix the issue flagged by the diagnostic.
    //
    // The TextEdits must not overlap, nor contain edits for other packages.
    type SuggestedFix struct {
    	// A description for this suggested fix to be shown to a user deciding
    	// whether to accept it.
    	Message   string
    	TextEdits []TextEdit
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/ambient/waypoints.go

    		wpNamespace, _ := getUseWaypoint(namespace.ObjectMeta, fallbackNamespace)
    		if wpNamespace != nil {
    			return krt.FetchOne[Waypoint](ctx, Waypoints, krt.FilterKey(wpNamespace.ResourceName()))
    		}
    	}
    
    	// neither o nor it's namespace has a use-waypoint label
    	return nil
    }
    
    func fetchWaypointForService(ctx krt.HandlerContext, Waypoints krt.Collection[Waypoint],
    	Namespaces krt.Collection[*v1.Namespace], o metav1.ObjectMeta,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/watch/watch.go

    	//    only ResourceVersion field is set. On successful restart of watch from a
    	//    bookmark resourceVersion, client is guaranteed to not get repeat event
    	//    nor miss any events.
    	//  * If Type is Error: *api.Status is recommended; other types may make sense
    	//    depending on context.
    	Object runtime.Object
    }
    
    type emptyWatch chan Event
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:06:22 UTC 2024
    - 8.1K bytes
    - Viewed (1)
  7. 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)
  8. src/crypto/tls/tls.go

    	if config == nil || len(config.Certificates) == 0 &&
    		config.GetCertificate == nil && config.GetConfigForClient == nil {
    		return nil, errors.New("tls: neither Certificates, GetCertificate, nor GetConfigForClient set in Config")
    	}
    	l, err := net.Listen(network, laddr)
    	if err != nil {
    		return nil, err
    	}
    	return NewListener(l, config), nil
    }
    
    type timeoutError struct{}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  9. src/go/types/unify.go

    					switch {
    					case xn:
    						// x is a defined type: nothing to do.
    					case yn:
    						// x is not a defined type and y is a defined type: select y.
    						u.set(px, y)
    					default:
    						// Neither x nor y are defined types.
    						if yc, _ := under(y).(*Chan); yc != nil && yc.dir != SendRecv {
    							// y is a directed channel type: select y.
    							u.set(px, y)
    						}
    					}
    				}
    				return true
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  10. apache-maven/src/main/appended-resources/licenses/EPL-2.0.txt

    or equipment, and unavailability or interruption of operations.
    
    6. DISCLAIMER OF LIABILITY
    
    EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, AND TO THE EXTENT
    PERMITTED BY APPLICABLE LAW, NEITHER RECIPIENT NOR ANY CONTRIBUTORS
    SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
    EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST
    PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 04 06:45:16 UTC 2024
    - 13.9K bytes
    - Viewed (0)
Back to top