Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 737 for Unknown (0.04 sec)

  1. src/cmd/asm/internal/asm/line_test.go

    		// Test AVX512 suffixes.
    		{"VADDPD.A X0, X1, X2", `unknown suffix "A"`},
    		{"VADDPD.A.A X0, X1, X2", `unknown suffix "A"; duplicate suffix "A"`},
    		{"VADDPD.A.A.A X0, X1, X2", `unknown suffix "A"; duplicate suffix "A"`},
    		{"VADDPD.A.B X0, X1, X2", `unknown suffix "A"; unknown suffix "B"`},
    		{"VADDPD.Z.A X0, X1, X2", `Z suffix should be the last; unknown suffix "A"`},
    Registered: 2025-05-27 11:13
    - Last Modified: 2023-08-29 07:48
    - 1.9K bytes
    - Viewed (0)
  2. 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]'
        }
    
    Registered: 2025-05-28 11:36
    - Last Modified: 2024-04-06 02:21
    - 3.8K bytes
    - Viewed (0)
  3. src/main/resources/mail/testmail.dfmail

    /*
     [Test Mail]
    */
    subject: [FESS] Test Mail: /*pmb.hostname:orElse('Unknown')*/
    >>>
    Registered: 2025-05-26 08:04
    - Last Modified: 2016-02-12 13:52
    - 146 bytes
    - Viewed (0)
  4. build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/docbook/JavadocConverterTest.groovy

            _ * propertyMetaData.rawCommentText >> '<unknown>text</unknown><inheritDoc>{@unknown text}{@p text}{@ unknown}'
    
            when:
            def result = parser.parse(propertyMetaData, listener)
    
            then:
    Registered: 2025-05-28 11:36
    - Last Modified: 2020-12-09 08:14
    - 14.2K bytes
    - Viewed (0)
  5. cmd/postpolicyform_test.go

    		},
    		{
    			name:    "unknown key XAmzMetaName is error as it does not appear in policy",
    			fv:      defaultFormVals.Clone().Set(xhttp.AmzMetaName, "my-name"),
    			wantErr: `Each form field that you specify in a form must appear in the list of policy conditions. "X-Amz-Meta-Name" not specified in the policy.`,
    		},
    		{
    			name:    "unknown key XAmzChecksumAlgo is error as it does not appear in policy",
    Registered: 2025-05-25 19:28
    - Last Modified: 2024-12-11 10:51
    - 12.3K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/smb2/info/Smb2QueryInfoResponse.java

                return new FileFsFullSizeInformation();
            case FileSystemInformation.FS_SIZE_INFO:
                return new FileFsSizeInformation();
            default:
                throw new SMBProtocolDecodingException("Unknown filesystem info class " + infoClass);
            }
        }
    
    
        /**
         * @param infoClass
         * @return
         * @throws SMBProtocolDecodingException
         */
    Registered: 2025-05-25 00:10
    - Last Modified: 2021-11-13 15:13
    - 6K bytes
    - Viewed (0)
  7. istioctl/cmd/istioctl_test.go

    // limitations under the License.
    
    package cmd
    
    import (
    	"testing"
    
    	istioctlutil "istio.io/istio/istioctl/pkg/util"
    )
    
    func TestBadParse(t *testing.T) {
    	// unknown flags should be a command parse
    	rootCmd := GetRootCmd([]string{"--unknown-flag"})
    	fErr := rootCmd.Execute()
    
    	switch fErr.(type) {
    	case istioctlutil.CommandParseError:
    		// do nothing
    	default:
    Registered: 2025-05-28 22:53
    - Last Modified: 2023-08-29 14:53
    - 1.5K bytes
    - Viewed (0)
  8. manifests/charts/base/templates/zzz_profile.yaml

    {{- $profile = (. | fromYaml) }}
    {{- else }}
    {{ fail (cat "unknown profile" .) }}
    {{- end }}
    {{- end }}
    {{- with .Values.compatibilityVersion }}
    {{- with $.Files.Get (printf "files/profile-compatibility-version-%s.yaml" .) }}
    {{- $ignore := mustMergeOverwrite $profile (. | fromYaml) }}
    {{- else }}
    {{ fail (cat "unknown compatibility version" $.Values.compatibilityVersion) }}
    {{- end }}
    {{- end }}
    Registered: 2025-05-28 22:53
    - Last Modified: 2025-04-12 16:18
    - 2.8K bytes
    - Viewed (0)
  9. manifests/charts/default/templates/zzz_profile.yaml

    {{- $profile = (. | fromYaml) }}
    {{- else }}
    {{ fail (cat "unknown profile" .) }}
    {{- end }}
    {{- end }}
    {{- with .Values.compatibilityVersion }}
    {{- with $.Files.Get (printf "files/profile-compatibility-version-%s.yaml" .) }}
    {{- $ignore := mustMergeOverwrite $profile (. | fromYaml) }}
    {{- else }}
    {{ fail (cat "unknown compatibility version" $.Values.compatibilityVersion) }}
    {{- end }}
    {{- end }}
    Registered: 2025-05-28 22:53
    - Last Modified: 2025-04-12 16:18
    - 2.8K bytes
    - Viewed (0)
  10. manifests/charts/gateway/templates/zzz_profile.yaml

    {{- $profile = (. | fromYaml) }}
    {{- else }}
    {{ fail (cat "unknown profile" .) }}
    {{- end }}
    {{- end }}
    {{- with .Values.compatibilityVersion }}
    {{- with $.Files.Get (printf "files/profile-compatibility-version-%s.yaml" .) }}
    {{- $ignore := mustMergeOverwrite $profile (. | fromYaml) }}
    {{- else }}
    {{ fail (cat "unknown compatibility version" $.Values.compatibilityVersion) }}
    {{- end }}
    {{- end }}
    Registered: 2025-05-28 22:53
    - Last Modified: 2025-04-12 16:18
    - 2.8K bytes
    - Viewed (0)
Back to top