Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 75 for filemap (0.19 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/DependencyHandlerApiResolveIntegrationTest.groovy

                dependencies {
                    a gradleApi()
                    b gradleTestKit()
                    c localGroovy()
                }
                task showArtifacts {
                    def filesA = configurations.a
                    def idsA = configurations.a.incoming.artifacts.resolvedArtifacts.map { it.id }
                    def filesB = configurations.b
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 06:59:30 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  2. test/noinit.go

    	hello                     = "hello, world"
    	bytes                     = []byte("hello, world")
    	four, five                = 4, 5
    	x, y                      = 0.1, "hello"
    	nilslice   []byte         = nil
    	nilmap     map[string]int = nil
    	nilfunc    func()         = nil
    	nilchan    chan int       = nil
    	nilptr     *byte          = nil
    )
    
    var a = [3]int{1001, 1002, 1003}
    var s = S{1101, 1102, 1103}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 14 17:57:36 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  3. src/database/sql/example_test.go

    		log.Fatalf("expected more result sets: %v", rows.Err())
    	}
    	var roleMap = map[int64]string{
    		1: "user",
    		2: "admin",
    		3: "gopher",
    	}
    	for rows.Next() {
    		var (
    			id   int64
    			role int64
    		)
    		if err := rows.Scan(&id, &role); err != nil {
    			log.Fatal(err)
    		}
    		log.Printf("id %d has role %s\n", id, roleMap[role])
    	}
    	if err := rows.Err(); err != nil {
    		log.Fatal(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 28 14:05:09 UTC 2020
    - 8.5K bytes
    - Viewed (0)
  4. src/internal/filepathlite/path_windows.go

    				return true
    			}
    			return false
    		}
    	}
    
    	// Passing CONIN$ or CONOUT$ to CreateFile opens a console handle.
    	// https://learn.microsoft.com/en-us/windows/win32/api/fileapi/nf-fileapi-createfilea#consoles
    	//
    	// While CONIN$ and CONOUT$ aren't documented as being files,
    	// they behave the same as CON. For example, ./CONIN$ also opens the console input.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:50 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  5. tests/test_tutorial/test_request_forms_and_files/test_tutorial001_an.py

        patha.write_text("<file content>")
        pathb.write_text("<file b content>")
    
        client = TestClient(app)
        with patha.open("rb") as filea, pathb.open("rb") as fileb:
            response = client.post(
                "/files/",
                data={"token": "foo"},
                files={"file": filea, "fileb": ("testb.txt", fileb, "text/plain")},
            )
        assert response.status_code == 200, response.text
        assert response.json() == {
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/cel/types.go

    			name = t.name
    		} else {
    			objUpdated = true
    		}
    		fieldMap := make(map[string]*DeclField, len(t.Fields))
    		for fieldName, field := range t.Fields {
    			fieldType := field.Type
    			fieldTypeName := fmt.Sprintf("%s.%s", name, fieldName)
    			updated := fieldType.MaybeAssignTypeName(fieldTypeName)
    			if updated == fieldType {
    				fieldMap[fieldName] = field
    				continue
    			}
    			objUpdated = true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 08 15:52:31 UTC 2023
    - 18K bytes
    - Viewed (0)
  7. src/os/types_windows.go

    	// FILE_FLAG_OPEN_REPARSE_POINT flag when opening the file if it is a reparse
    	// point.”
    	//
    	// And per https://learn.microsoft.com/en-us/windows/win32/api/fileapi/nf-fileapi-createfilew,
    	// “If the file is not a reparse point, then this flag is ignored.”
    	//
    	// So we set FILE_FLAG_OPEN_REPARSE_POINT unconditionally, since we want
    	// information about the reparse point itself.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/schema/validation_test.go

    func (fakeOrigin) Namespace() resource.Namespace { return "myNamespace" }
    func (fakeOrigin) Reference() resource.Reference { return fakeReference{} }
    func (fakeOrigin) FieldMap() map[string]int      { return make(map[string]int) }
    func (fakeOrigin) ClusterName() cluster.ID {
    	return "cluster"
    }
    
    type fakeReference struct{}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. operator/pkg/object/objects.go

    	}
    }
    
    func ObjectsNotInLists(objects K8sObjects, lists ...K8sObjects) K8sObjects {
    	var ret K8sObjects
    
    	filterMap := make(map[*K8sObject]bool)
    	for _, list := range lists {
    		for _, object := range list {
    			filterMap[object] = true
    		}
    	}
    
    	for _, o := range objects {
    		if !filterMap[o] {
    			ret = append(ret, o)
    		}
    	}
    	return ret
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 21 07:16:46 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  10. src/go/doc/reader.go

    	if r.doc == "" {
    		r.doc = text
    		return
    	}
    	r.doc += "\n" + text
    }
    
    func (r *reader) remember(predecl string, typ *ast.InterfaceType) {
    	if r.fixmap == nil {
    		r.fixmap = make(map[string][]*ast.InterfaceType)
    	}
    	r.fixmap[predecl] = append(r.fixmap[predecl], typ)
    }
    
    func specNames(specs []ast.Spec) []string {
    	names := make([]string, 0, len(specs)) // reasonable estimate
    	for _, s := range specs {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 27.5K bytes
    - Viewed (0)
Back to top