Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for Imported (0.19 sec)

  1. pilot/pkg/networking/core/sidecar_simulation_test.go

    			expected: map[string][]string{
    				// imported
    				"known.default.svc.cluster.local": {"outbound|80||example.com"},
    				// Not imported but we include it anyway
    				"alt-known.default.svc.cluster.local": {"outbound|80||example.com"},
    			},
    			expectedGateway: map[string][]string{
    				// imported
    				"known.default.svc.cluster.local": {"outbound|80||example.com"},
    				// Not imported
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  2. cmd/iam.go

    					normKey, origKeys)
    			}
    
    			if len(origKeys[1:]) > 0 {
    				// Log that extra DN mappings will not be imported.
    				iamLogEvent(ctx, "import-ldap-normalize: extraneous DN mappings found for LDAP DN[%s]: %v will not be imported", origKeys[0], origKeys[1:])
    			}
    
    			// Policies mapped to the DN's are the same, so we remove the extra
    			// ones from the map.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  3. docs/en/docs/release-notes.md

        * It's mainly syntax sugar, a convenience for developer experience.
        * Now `Request`, `Response`, `WebSocket`, `status` can be imported directly from `fastapi` as in `from fastapi import Response`. This is because those are frequently used, to use the request directly, to set headers and cookies, to get status codes, etc.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  4. pilot/pkg/xds/delta.go

    	for _, w := range wrl {
    		if err := s.pushDeltaXds(con, w, pushRequest); err != nil {
    			return err
    		}
    	}
    
    	if pushRequest.Full {
    		// Report all events for unwatched resources. Watched resources will be reported in pushXds or on ack.
    		reportEventsForUnWatched(con, s.StatusReporter, pushRequest.Push.LedgerVersion)
    	}
    
    	proxiesConvergeDelay.Record(time.Since(pushRequest.Start).Seconds())
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet.go

    	nodeReadyGracePeriod = 120 * time.Second
    
    	// DefaultContainerLogsDir is the location of container logs.
    	DefaultContainerLogsDir = "/var/log/containers"
    
    	// MaxContainerBackOff is the max backoff period, exported for the e2e test
    	MaxContainerBackOff = 300 * time.Second
    
    	// Period for performing global cleanup tasks.
    	housekeepingPeriod = time.Second * 2
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  6. cmd/bucket-replication.go

    		// only at bucket level instead.
    		VersionSuspended: globalBucketVersioningSys.Suspended(bucket),
    	})
    	if err != nil && !isErrVersionNotFound(err) { // VersionNotFound would be reported by pool that object version is missing on.
    		sendEvent(eventArgs{
    			BucketName: bucket,
    			Object: ObjectInfo{
    				Bucket:       bucket,
    				Name:         dobj.ObjectName,
    				VersionID:    versionID,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  7. CREDITS

    This project is covered by two different licenses: MIT and Apache.
    
    #### MIT License ####
    
    The following files were ported to Go from C files of libyaml, and thus
    are still covered by their original MIT license, with the additional
    copyright staring in 2011 when the project was ported over:
    
        apic.go emitterc.go parserc.go readerc.go scannerc.go
        writerc.go yamlh.go yamlprivateh.go
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 15:34:20 UTC 2024
    - 1.7M bytes
    - Viewed (0)
Back to top