Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 396 for noiden (0.18 sec)

  1. src/main/resources/fess_indices/fess/fi/stopwords.txt

    sen
    sitä
    siinä
    siitä
    siihen
    sillä
    siltä
    sille
    sinä
    siksi
    nämä
    näiden
    näitä
    näissä
    näistä
    näihin
    näillä
    näiltä
    näille
    näinä
    näiksi
    nuo
    noiden
    noita
    noissa
    noista
    noihin
    noilla
    noilta
    noille
    noina
    noiksi
    ne
    niiden
    niitä
    niissä
    niistä
    niihin
    niillä
    niiltä
    niille
    niinä
    niiksi
    kuka
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Nov 27 12:59:36 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/ops/gen/cpp/golden/testing_ops.cc.golden

    limitations under the License.
    ==============================================================================*/
    
    // This file is MACHINE GENERATED! Do not edit.
    
    #include "tensorflow/c/experimental/ops/gen/cpp/golden/testing_ops.h"
    
    #include "tensorflow/c/eager/abstract_context.h"
    #include "tensorflow/c/eager/abstract_tensor_handle.h"
    #include "tensorflow/c/eager/tracing_utils.h"
    #include "tensorflow/core/framework/types.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 16 19:04:03 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  3. pilot/test/util/diff.go

    	t.Helper()
    	golden, err := os.ReadFile(file)
    	if err != nil {
    		t.Fatal(err.Error())
    	}
    	return golden
    }
    
    // CompareBytes compares the content value against the golden bytes and fails the test if they differ
    func CompareBytes(t test.Failer, content []byte, golden []byte, name string) {
    	t.Helper()
    	if err := Compare(content, golden); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 05 08:53:20 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. cni/pkg/plugin/plugin_dryrun_test.go

    			}
    			generatedRules := getRules(generated)
    
    			refreshGoldens(t, tt.golden, generatedRules)
    
    			// Compare generated iptables rule with golden files.
    			golden, err := os.ReadFile(tt.golden)
    			if err != nil {
    				log.Fatalf("Cannot read golden rule file: %v", err)
    			}
    			goldenRules := getRules(golden)
    
    			if len(generatedRules) == 0 {
    				t.Error("Got empty generated rules")
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 10 00:31:55 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  5. test/crlf.go

    	" world"CR
    
    var t = BQhelloCR
     worldBQ
    
    var u = BQhCReCRlCRlCRoCR
     worldBQ
    
    var golden = "hello\n world"
    
    func main() {
    	if s != golden {
    		fmt.Printf("s=%q, want %q", s, golden)
    	}
    	if t != golden {
    		fmt.Printf("t=%q, want %q", t, golden)
    	}
    	if u != golden {
    		fmt.Printf("u=%q, want %q", u, golden)
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 20 15:45:43 UTC 2012
    - 782 bytes
    - Viewed (0)
  6. src/cmd/gofmt/gofmt_test.go

    				out = in[:len(in)-len(".input")] + ".golden"
    			}
    			runTest(t, in, out)
    			if in != out && !t.Failed() {
    				// Check idempotence.
    				runTest(t, out, out)
    			}
    		})
    	}
    }
    
    // Test case for issue 3961.
    func TestCRLF(t *testing.T) {
    	const input = "testdata/crlf.input"   // must contain CR/LF's
    	const golden = "testdata/crlf.golden" // must not contain any CR's
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 19:22:49 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  7. src/crypto/rc4/rc4_test.go

    		}
    	}
    }
    
    func TestBlock(t *testing.T) {
    	c1a, _ := NewCipher(golden[0].key)
    	c1b, _ := NewCipher(golden[1].key)
    	data1 := make([]byte, 1<<20)
    	for i := range data1 {
    		c1a.XORKeyStream(data1[i:i+1], data1[i:i+1])
    		c1b.XORKeyStream(data1[i:i+1], data1[i:i+1])
    	}
    
    	c2a, _ := NewCipher(golden[0].key)
    	c2b, _ := NewCipher(golden[1].key)
    	data2 := make([]byte, 1<<20)
    	c2a.XORKeyStream(data2, data2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 21 19:49:06 UTC 2018
    - 4.3K bytes
    - Viewed (0)
  8. src/go/doc/doc_test.go

    				t.Fatal(err)
    			}
    			got := buf.Bytes()
    
    			// update golden file if necessary
    			golden := filepath.Join(dataDir, fmt.Sprintf("%s.%d.golden", pkg.Name, mode))
    			if *update {
    				err := os.WriteFile(golden, got, 0644)
    				if err != nil {
    					t.Fatal(err)
    				}
    			}
    
    			// get golden file
    			want, err := os.ReadFile(golden)
    			if err != nil {
    				t.Fatal(err)
    			}
    
    			// compare
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:52 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/ops/gen/cpp/golden/BUILD

    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
        default_visibility = ["//visibility:public"],
        licenses = ["notice"],
    )
    
    filegroup(
        name = "golden",
        data = glob(["*.golden"]),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 17 15:20:54 UTC 2022
    - 235 bytes
    - Viewed (0)
  10. src/hash/fnv/fnv_test.go

    package fnv
    
    import (
    	"bytes"
    	"encoding"
    	"encoding/binary"
    	"hash"
    	"io"
    	"testing"
    )
    
    type golden struct {
    	out       []byte
    	in        string
    	halfState string // marshaled hash state after first half of in written, used by TestGoldenMarshal
    }
    
    var golden32 = []golden{
    	{[]byte{0x81, 0x1c, 0x9d, 0xc5}, "", "fnv\x01\x81\x1c\x9d\xc5"},
    	{[]byte{0x05, 0x0c, 0x5d, 0x7e}, "a", "fnv\x01\x81\x1c\x9d\xc5"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 01 21:04:12 UTC 2017
    - 7.3K bytes
    - Viewed (0)
Back to top