Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 32 for smith (0.05 sec)

  1. src/runtime/complex.go

    	}
    	return copysign(g, f)
    }
    
    func complex128div(n complex128, m complex128) complex128 {
    	var e, f float64 // complex(e, f) = n/m
    
    	// Algorithm for robust complex division as described in
    	// Robert L. Smith: Algorithm 116: Complex division. Commun. ACM 5(8): 435 (1962).
    	if abs(real(m)) >= abs(imag(m)) {
    		ratio := imag(m) / real(m)
    		denom := real(m) + ratio*imag(m)
    		e = (real(n) + imag(n)*ratio) / denom
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 15 22:45:17 UTC 2017
    - 1.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/modelRules/basicRuleSourcePlugin/groovy/build.gradle

          }
        }
      }
    // end::task-create-rule[]
    }
    
    apply plugin: PersonRules
    // end::rule-source-plugin[]
    // end::managed-type-and-plugin[]
    
    // tag::dsl[]
    model {
      person {
        lastName = "Smith"
      }
    }
    // end::dsl[]
    // end::managed-type-plugin-and-dsl[]
    
    enum MaritalStatus {
        SINGLE,
        MARRIED
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. src/net/mail/message_test.go

    		in: `From: John Doe <******@****.***e>
    To: Mary Smith <******@****.***>
    Subject: Saying Hello
    Date: Fri, 21 Nov 1997 09:55:06 -0600
    Message-ID: <******@****.***e>
    
    This is a message just to say hello.
    So, "Hello".
    `,
    		header: Header{
    			"From":       []string{"John Doe <******@****.***e>"},
    			"To":         []string{"Mary Smith <******@****.***>"},
    			"Subject":    []string{"Saying Hello"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/modelRules/basicRuleSourcePlugin/tests/basicRuleSourcePlugin-model-task.out

        + id
              | Type:   	java.lang.Long
              | Value:  	null
              | Creator: 	PersonRules#person(Person)
        + lastName
              | Type:   	java.lang.String
              | Value:  	Smith
              | Creator: 	PersonRules#person(Person)
        + maritalStatus
              | Type:   	MaritalStatus
              | Creator: 	PersonRules#person(Person)
        + mother
              | Type:   	Person
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 15:10:38 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. okhttp-tls/src/test/java/okhttp3/tls/internal/der/DerTest.kt

      }
    
      @Test fun `decode raw sequence`() {
        val buffer =
          Buffer()
            .write("300A".decodeHex())
            .write("1505".decodeHex())
            .write("Smith".encodeUtf8())
            .write("01".decodeHex())
            .write("01".decodeHex())
            .write("FF".decodeHex())
    
        val derReader = DerReader(buffer)
    
        derReader.read("test") { header ->
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/project/DeclarativeDSLCustomDependenciesExtensionsSpec.groovy

                public class Lib {
                    public static ImmutableSet<String> getPeople() {
                        return ImmutableSet.of(capitalize("adam johnson"), capitalize("bob smith"), capitalize("carl jones"));
                    }
    
                    private static String capitalize(String input) {
                        return StringUtils.capitalize(input);
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 10:11:12 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/CoreJavadocOptions.java

         *       question mark or exclamation mark followed by a space if the next word starts with a capital letter.
         *       This is meant to handle most abbreviations (such as "The serial no. is valid", but won't handle "Mr. Smith").
         *       Doesn't stop at HTML tags or sentences that begin with numbers or symbols.
         *       Stops at the last period in "../filename", even if embedded in an HTML tag.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 28.2K bytes
    - Viewed (0)
  8. src/crypto/x509/x509_test.go

    				},
    				pkix.RelativeDistinguishedNameSET{
    					pkix.AttributeTypeAndValue{Type: oidOrganizationalUnit, Value: "Sales"},
    					pkix.AttributeTypeAndValue{Type: oidCommonName, Value: "J. Smith"},
    				},
    			},
    			want: "OU=Sales+CN=J. Smith,O=Widget Inc.,C=US",
    		},
    	}
    
    	for i, test := range tests {
    		if got := test.seq.String(); got != test.want {
    			t.Errorf("#%d: String() = \n%s\n, want \n%s", i, got, test.want)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  9. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    // Submitted by Chris Whittle <******@****.***>
    affinitylottery.org.uk
    raffleentry.org.uk
    weeklylottery.org.uk
    
    // WP Engine : https://wpengine.com/
    // Submitted by Michael Smith <michael.smith@wpengine.com>
    // Submitted by Brandon DuRette <******@****.***>
    wpenginepowered.com
    js.wpenginepowered.com
    
    // Wix.com, Inc. : https://www.wix.com
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modfetch/zip_sum_test/testdata/zip_sums.csv

    github.com/twitchtv/twirp,v5.8.0+incompatible,h1:DTfGS9u/jHbo34cBB+qhzVHRaAq+tRois71j8pvjQ5M=,a4137792083eedd9ac04e88918d8952a841120b11e71161d2d444065b8e65d79
    github.com/tyler-smith/go-bip39,v1.0.2,h1:+t3w+KwLXO6154GNJY+qUtIxLTmFjfUmpguQT1OlOT8=,6173ded455fa17cddd889bf3bc123be2343a09aeb60f83e2b63823dd9ce94e09
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 18 17:29:01 UTC 2020
    - 334.9K bytes
    - Viewed (0)
Back to top