Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 627 for pusha (0.23 sec)

  1. samples/jwt-server/src/Makefile

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    HUB ?= gcr.io/istio-testing/jwt-server
    TAG ?= 0.7
    
    push: main.go Dockerfile
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 730 bytes
    - Viewed (0)
  2. pilot/pkg/security/authz/builder/builder_test.go

    					IsCustomBuilder: tc.meshConfig != nil,
    					UseExtendedJwt:  extended,
    				}
    				push := push(t, baseDir+tc.input, tc.meshConfig)
    				proxy := node(tc.version)
    				selectionOpts := model.PolicyMatcherForProxy(proxy)
    				policies := push.AuthzPolicies.ListAuthorizationPolicies(selectionOpts)
    				g := New(tc.tdBundle, push, policies, option)
    				if g == nil {
    					t.Fatalf("failed to create generator")
    				}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  3. architecture/networking/pilot.md

    The Push Queue is mostly a normal queue, but it has some special logic to merge push requests for each given proxy. This results in each proxy having 0 or 1 outstanding push requests; if additional updates come in the existing push request is just expanded.
    
    Another job polls this queue and triggers each client to start a push.
    
    ```mermaid
    graph TD
        subgraph Config Flow
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/listener_waypoint.go

    		authnBuilder = authn.NewBuilderForService(lb.push, lb.node, svc)
    		authzBuilder = authz.NewBuilderForService(authz.Local, lb.push, lb.node, true, svc)
    		authzCustomBuilder = authz.NewBuilderForService(authz.Custom, lb.push, lb.node, true, svc)
    	}
    
    	// TODO: consider dedicated listener class for waypoint filters
    	cls := istionetworking.ListenerClassSidecarInbound
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/envoyfilter/extension_configuration_patch_test.go

    	env := newTestEnvironment(serviceDiscovery, testMesh, buildEnvoyFilterConfigStore(configPatches))
    	push := model.NewPushContext()
    	push.InitContext(env, nil, nil)
    
    	for _, c := range testCases {
    		t.Run(c.name, func(t *testing.T) {
    			gotConfigs := InsertedExtensionConfigurations(push.EnvoyFilters(&model.Proxy{Type: model.SidecarProxy, ConfigNamespace: "not-default"}),
    				c.requestedNames)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. releasenotes/notes/push-cds-and-eds-on-virtualservice-update.yaml

    Brian Wolfe <******@****.***> 1601597230 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 02 00:07:10 UTC 2020
    - 176 bytes
    - Viewed (0)
  7. .github/workflows/go-fips.yml

              WORKDIR /minio
              ENV GOEXPERIMENT=boringcrypto
              RUN make
              EOF
    
          - name: Build
            uses: docker/build-push-action@v3
            with:
              context: .
              file: Dockerfile.fips.test
              push: false
              load: true
              tags: minio/fips-test:latest
    
          # This should fail if grep returns non-zero exit
          - name: Test binary
            run: |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/listener.go

    					}
    
    					if conflictWithReservedListener(node, push, bind.Primary(), servicePort.Port, servicePort.Protocol) {
    						log.Debugf("buildSidecarOutboundListeners: skipping service port %s:%d for node %s as it conflicts with static listener",
    							service.Hostname, servicePort.Port, node.ID)
    						continue
    					}
    
    					listenerOpts := outboundListenerOpts{
    						push:    push,
    						proxy:   node,
    						bind:    bind,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  9. src/runtime/sys_windows_arm.s

    	// On entry, the trampoline in zcallback_windows_arm.s left
    	// the callback index in R12 (which is volatile in the C ABI).
    
    	// Push callback register arguments r0-r3. We do this first so
    	// they're contiguous with stack arguments.
    	MOVM.DB.W [R0-R3], (R13)
    	// Push C callee-save registers r4-r11 and lr.
    	MOVM.DB.W [R4-R11, R14], (R13)
    	SUB	$(16 + callbackArgs__size), R13	// space for locals
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 21 15:56:43 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  10. CONTRIBUTING.md

    ```
    git commit -am 'Add some feature'
    ```
    
    ### Push to the branch
    
    Push your locally committed changes to the remote origin (your fork)
    
    ```
    git push origin my-new-feature
    ```
    
    ### Create a Pull Request
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Feb 12 00:51:25 UTC 2022
    - 2.8K bytes
    - Viewed (0)
Back to top