Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,528 for unknownI (0.31 sec)

  1. src/main/resources/mail/es_status.dfmail

    /*
     [Crawler Notification]
    */
    subject: [FESS] Status Change: /*pmb.hostname:orElse('Unknown')*/
    >>>
    --- Server Info ---
    Cluster Name: /*pmb.clustername:orElse('Unknown')*/
    Host Name: /*pmb.hostname:orElse('Unknown')*/
    
    --- Status ---
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Oct 27 02:03:02 UTC 2016
    - 291 bytes
    - Viewed (0)
  2. pkg/version/version_test.go

    				t.Errorf("Got %v, expected %v", got, v.want)
    			}
    		})
    	}
    }
    
    func TestBuildInfo(t *testing.T) {
    	versionedString := fmt.Sprintf(`version.BuildInfo{Version:"unknown", GitRevision:"unknown", `+
    		`GolangVersion:"%s", BuildStatus:"unknown", GitTag:"unknown"}`,
    		runtime.Version())
    
    	cases := []struct {
    		name     string
    		in       BuildInfo
    		want     string
    		longWant string
    	}{
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/use/PluginUseDslIntegrationSpec.groovy

            lineNumber | code                                         | msg
            2          | 'id("noop").version("${unknown}")'           | "Could not get unknown property 'unknown'"
            2          | 'id("noop").version("part-${unknown}-part")' | "Could not get unknown property 'unknown'"
        }
    
        def "fails to interpolate unknown property in settings plugins block"() {
            when:
            settingsFile.text = """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/add.pbtxt

    # NONE:           fetch %[[add]]
    
    # UNKNOWN-LABEL: func @main
    # UNKNOWN-SAME:  (%[[ARG_0:[a-z0-9]+]]: tensor<*xi32>, %[[ARG_1:[a-z0-9]+]]: tensor<*xi32>) -> tensor<*xi32>
    # UNKNOWN-SAME:  control_outputs = ""
    # UNKNOWN-SAME:  inputs = "input0,input1"
    # UNKNOWN-SAME:  outputs = "Add"
    # UNKNOWN:           %[[add:.*]], %[[add_control:.*]] = tf_executor.island wraps "tf.Add"(%[[ARG_0]], %[[ARG_1]])
    # UNKNOWN:           fetch %[[add]]
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 17 08:38:39 UTC 2020
    - 3.4K bytes
    - Viewed (0)
  5. platforms/core-runtime/cli/src/test/groovy/org/gradle/cli/CommandLineParserTest.groovy

            when:
            parser.parse(['--unknown'])
    
            then:
            def e = thrown(CommandLineArgumentException)
            e.message == 'Unknown command-line option \'--unknown\'.'
        }
    
        def parseFailsWhenCommandLineContainsUnknownLongOptionWithSingleDashes() {
            when:
            parser.parse(['-unknown'])
    
            then:
            def e = thrown(CommandLineArgumentException)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:00:57 UTC 2023
    - 20.8K bytes
    - Viewed (0)
  6. 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: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 07:48:38 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. test/fixedbugs/issue31053.dir/main.go

    		DoneChan:      nil, // ERROR "unknown field 'DoneChan' in struct literal of type f1.Foo"
    		Name:          "hey",
    		name:          "there",   // ERROR "unknown field 'name' in struct literal of type f1.Foo .but does have Name."
    		noSuchPrivate: true,      // ERROR "unknown field 'noSuchPrivate' in struct literal of type f1.Foo"
    		NoSuchPublic:  true,      // ERROR "unknown field 'NoSuchPublic' in struct literal of type f1.Foo"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 28 07:44:07 UTC 2020
    - 2.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/runtime/zz_generated.deepcopy.go

    func (in *Unknown) DeepCopyInto(out *Unknown) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	if in.Raw != nil {
    		in, out := &in.Raw, &out.Raw
    		*out = make([]byte, len(*in))
    		copy(*out, *in)
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Unknown.
    func (in *Unknown) DeepCopy() *Unknown {
    	if in == nil {
    		return nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 2K bytes
    - Viewed (0)
  9. pkg/version/version.go

    // Note that DATE is omitted for reproducible builds
    var (
    	buildVersion     = "unknown"
    	buildGitRevision = "unknown"
    	buildStatus      = "unknown"
    	buildTag         = "unknown"
    	buildHub         = "unknown"
    	buildOS          = "unknown"
    	buildArch        = "unknown"
    )
    
    // BuildInfo describes version information about the binary build.
    type BuildInfo struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 29 14:15:26 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  10. cmd/kube-controller-manager/app/certificates_test.go

    			KeyFile:  "/cluster-signing-kube-apiserver-client/key-file",
    		},
    		LegacyUnknownSignerConfiguration: csrsigningconfig.CSRSigningConfiguration{
    			CertFile: "/cluster-signing-legacy-unknown/cert-file",
    			KeyFile:  "/cluster-signing-legacy-unknown/key-file",
    		},
    	}
    	defaultOnly := csrsigningconfig.CSRSigningControllerConfiguration{
    		ClusterSigningCertFile: "/cluster-signing-cert",
    		ClusterSigningKeyFile:  "/cluster-signing-key",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 09 12:14:55 UTC 2020
    - 12.1K bytes
    - Viewed (0)
Back to top