Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 25 for unambiguous (0.15 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    			allErrs = append(allErrs, field.Invalid(fldPath.Child("shortNames").Index(i), shortName, strings.Join(errs, ",")))
    		}
    	}
    
    	// kind and listKind may not be the same or parsing become ambiguous
    	if len(names.Kind) > 0 && names.Kind == names.ListKind {
    		allErrs = append(allErrs, field.Invalid(fldPath.Child("listKind"), names.ListKind, "kind and listKind may not be the same"))
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  2. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // version specifies the version in the form of "version". This is to save
      // the clients the trouble of splitting the GroupVersion.
      optional string version = 2;
    }
    
    // GroupVersionKind unambiguously identifies a kind.  It doesn't anonymously include GroupVersion
    // to avoid automatic coercion.  It doesn't use a GroupVersion to avoid custom marshalling
    //
    // +protobuf.options.(gogoproto.goproto_stringer)=false
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // version specifies the version in the form of "version". This is to save
      // the clients the trouble of splitting the GroupVersion.
      optional string version = 2;
    }
    
    // GroupVersionKind unambiguously identifies a kind.  It doesn't anonymously include GroupVersion
    // to avoid automatic coercion.  It doesn't use a GroupVersion to avoid custom marshalling
    //
    // +protobuf.options.(gogoproto.goproto_stringer)=false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  4. src/internal/trace/order.go

    	// so that we can correctly model P stealing. Without this sequence number here,
    	// the syscall from which a ProcSteal event is stealing can be ambiguous in the
    	// face of broken timestamps. See the go122-syscall-steal-proc-ambiguous test for
    	// more details.
    	//
    	// Note that because this sequence number only exists as a tool for disambiguation,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

                else -> null
            }
    
            return (unambiguousSymbol as? FirCallableSymbol<*>)
        }
    
        /**
         * If [namedReference] is ambiguous and all candidates point to the callables with same callableId,
         * returns the first candidate; otherwise returns null.
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/tensor_array_ops_decomposition.mlir

      func.return
    }
    
    // -----
    
    // Tests that the pass reports error on ambiguous tensor array.
    
    func.func @main(%arg0: tensor<i1>) -> () {
      %size = "tf.Const"() {value = dense<10> : tensor<i32>} : () -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 49K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

            return false;
        }
    
        private void ambiguousClass(ClassNode type, ClassNode iType, String name) {
            if (type.getName().equals(iType.getName())) {
                addError("reference to " + name + " is ambiguous, both class " + type.getName() + " and " + iType.getName() + " match", type);
            } else {
                type.setRedirect(iType);
            }
        }
    
        private boolean resolveAliasFromModule(ClassNode type) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

          all_elt_types |= t
    
        if len(all_elt_types) != 1:
          all_elt_types = self._coerce_to_more_specific_type(all_elt_types)
    
        if len(all_elt_types) != 1:
          raise ValueError('ambiguous list element types: {}'.format(elt_types))
    
        if TFRTypes.TENSOR in all_elt_types:
          return {TFRTypes.TENSOR_LIST}
        return {TFRTypes.ATTR}
    
    
    class SymbolTable(object):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  9. src/net/http/transport.go

    		// Tell writeLoop to skip sending the body if we're going to close the connection,
    		// or to send it otherwise.
    		//
    		// The case where we receive a 101 Switching Protocols response is a bit
    		// ambiguous, since we don't know what protocol we're switching to.
    		// Conceivably, it's one that doesn't need us to send the body.
    		// Given that we'll send the body if ExpectContinueTimeout expires,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/HttpUrlTest.kt

        assertThat(url.queryParameterNames).isEqualTo(setOf("a+=& b"))
        assertThat(url.queryParameterValues("a+=& b")).isEqualTo(listOf("c+=& d"))
        assertThat(url.querySize).isEqualTo(1)
        // Ambiguous! (Though working as designed.)
        assertThat(url.query).isEqualTo("a+=& b=c+=& d")
        assertThat(url.encodedQuery).isEqualTo("a%2B%3D%26%20b=c%2B%3D%26%20d")
      }
    
      @Test
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 67.9K bytes
    - Viewed (0)
Back to top