Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 555 for unknown (0.25 sec)

  1. build-logic/documentation/src/test/groovy/gradlebuild/docs/model/SimpleClassMetaDataRepositoryTest.groovy

            expect:
            repository.find('unknown') == null
        }
    
        def getFailsForUnknownClass() {
            given:
            repository.put('unkown', new TestDomainObject('unknown'))
    
            when:
            repository.get('unknown')
    
            then:
            UnknownDomainObjectException e = thrown()
            e.message == 'No meta-data is available for class \'unknown\'. Did you mean? [unkown]'
        }
    
    Groovy
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Sat Apr 06 02:21:33 GMT 2024
    - 3.8K bytes
    - Viewed (0)
  2. istioctl/pkg/writer/pilot/status_test.go

    						clusterID:      "cluster4",
    						version:        "1.20",
    						cdsSyncStatus:  status.ConfigStatus_UNKNOWN,
    						ldsSyncStatus:  status.ConfigStatus_UNKNOWN,
    						rdsSyncStatus:  status.ConfigStatus_UNKNOWN,
    						edsSyncStatus:  status.ConfigStatus_UNKNOWN,
    						ecdsSyncStatus: status.ConfigStatus_UNKNOWN,
    					},
    				}),
    			},
    			want: "testdata/multiXdsStatusMultiPilot.txt",
    		},
    		{
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Mar 08 08:38:19 GMT 2024
    - 6.5K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/internal/ws/WebSocketExtensionsTest.kt

      fun unknownParameters() {
        assertThat(parse("permessage-deflate; unknown"))
          .isEqualTo(WebSocketExtensions(perMessageDeflate = true, unknownValues = true))
        assertThat(parse("permessage-deflate; unknown_parameter=15"))
          .isEqualTo(WebSocketExtensions(perMessageDeflate = true, unknownValues = true))
        assertThat(parse("permessage-deflate; unknown_parameter=15; unknown_parameter=15"))
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 8.3K bytes
    - Viewed (0)
  4. common-protos/k8s.io/apimachinery/pkg/runtime/generated.proto

    message TypeMeta {
      // +optional
      optional string apiVersion = 1;
    
      // +optional
      optional string kind = 2;
    }
    
    // Unknown allows api objects with unknown types to be passed-through. This can be used
    // to deal with the API objects from a plug-in. Unknown objects still have functioning
    // TypeMeta features-- kind, version, etc.
    // TODO: Make this object have easy access to field based accessors and settors for
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 4.2K bytes
    - Viewed (0)
  5. manifests/charts/istio-cni/templates/clusterrolebinding.yaml

    metadata:
      name: istio-cni
      labels:
        app: istio-cni
        release: {{ .Release.Name }}
        istio.io/rev: {{ .Values.revision | default "default" }}
        install.operator.istio.io/owning-resource: {{ .Values.ownerName | default "unknown" }}
        operator.istio.io/component: "Cni"
    roleRef:
      apiGroup: rbac.authorization.k8s.io
      kind: ClusterRole
      name: istio-cni
    subjects:
    - kind: ServiceAccount
      name: istio-cni
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Dec 20 22:14:13 GMT 2023
    - 1.6K bytes
    - Viewed (0)
  6. android/guava-testlib/src/com/google/common/collect/testing/google/MultisetIteratorTester.java

          }
        }.test();
      }
    
      @CollectionFeature.Require(value = SUPPORTS_ITERATOR_REMOVE, absent = KNOWN_ORDER)
      public void testRemovingIteratorUnknownOrder() {
        new IteratorTester<E>(
            4,
            MODIFIABLE,
            Arrays.asList(e0(), e1(), e1(), e2()),
            IteratorTester.KnownOrder.UNKNOWN_ORDER) {
          @Override
          protected Iterator<E> newTargetIterator() {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Feb 21 16:49:06 GMT 2024
    - 4.4K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/ModelProblemUtils.java

            return ((groupId != null && !groupId.isEmpty()) ? groupId : "[unknown-group-id]")
                    + ':'
                    + ((artifactId != null && !artifactId.isEmpty()) ? artifactId : "[unknown-artifact-id]")
                    + ':'
                    + ((version != null && !version.isEmpty()) ? version : "[unknown-version]");
        }
    
        /**
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 4.8K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/internal/impl/PathModularizationCache.java

            boolean modules = false;
            boolean unknown = false;
            for (PathType type : types) {
                if (filter.test(type)) {
                    if (JavaPathType.CLASSES.equals(type)) {
                        classes = true;
                    } else if (JavaPathType.MODULES.equals(type)) {
                        modules = true;
                    } else {
                        unknown = true;
                    }
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 5.2K bytes
    - Viewed (0)
  9. manifests/charts/istio-cni/templates/clusterrole.yaml

    metadata:
      name: istio-cni
      labels:
        app: istio-cni
        release: {{ .Release.Name }}
        istio.io/rev: {{ .Values.revision | default "default" }}
        install.operator.istio.io/owning-resource: {{ .Values.ownerName | default "unknown" }}
        operator.istio.io/component: "Cni"
    rules:
    - apiGroups: [""]
      resources: ["pods","nodes","namespaces"]
      verbs: ["get", "list", "watch"]
    ---
    {{- if .Values.cni.repair.enabled }}
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Dec 20 22:14:13 GMT 2023
    - 2K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/discovery/v1beta1/generated.proto

    message EndpointConditions {
      // ready indicates that this endpoint is prepared to receive traffic,
      // according to whatever system is managing the endpoint. A nil value
      // indicates an unknown state. In most cases consumers should interpret this
      // unknown state as ready. For compatibility reasons, ready should never be
      // "true" for terminating endpoints.
      // +optional
      optional bool ready = 1;
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 8K bytes
    - Viewed (0)
Back to top