Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 64 for filemap (0.13 sec)

  1. pilot/pkg/config/file/store.go

    		// Get the Node that contains all the YAML chunk information
    		yamlNode := yamlChunkNode.Content[0]
    
    		BuildFieldPathMap(yamlNode, lineNum, "", fieldMap)
    	}
    
    	pos := legacykube.Position{Filename: name, Line: lineNum}
    	c, err := ToConfig(objMeta, schema, &pos, fieldMap)
    	if err != nil {
    		return resources, err
    	}
    	return []kubeResource{
    		{
    			schema: schema,
    			sha:    sha256.Sum256(yamlChunk),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:47 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/rule/impl/SitemapsRule.java

                } catch (final CrawlingAccessException e) {
                    throw e;
                } catch (final Exception e) {
                    if (logger.isDebugEnabled()) {
                        logger.debug("Failed a sitemap check: {}", responseData, e);
                    }
                }
            }
    
            return false;
        }
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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 (1)
Back to top