Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 59 for attacher (0.23 sec)

  1. cluster/gce/windows/k8s-node-setup.psm1

            -Name ${endpoint_name} `
            -IPAddress ${pod_endpoint_gateway} `
            -Gateway "0.0.0.0" `
            -Verbose
        # TODO(pjh): find out: why is this always CompartmentId 1?
        Attach-HnsHostEndpoint `
            -EndpointID ${hns_endpoint}.Id `
            -CompartmentID 1 `
            -Verbose
        netsh interface ipv4 set interface "${vnic_name}" forwarding=enabled
      }
    
      Try {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  2. src/crypto/tls/conn.go

    	good &= good << 4
    	good &= good << 2
    	good &= good << 1
    	good = uint8(int8(good) >> 7)
    
    	// Zero the padding length on error. This ensures any unchecked bytes
    	// are included in the MAC. Otherwise, an attacker that could
    	// distinguish MAC failures from padding failures could mount an attack
    	// similar to POODLE in SSL 3.0: given a good ciphertext that uses a
    	// full block's worth of padding, replace the final block with another
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  3. cmd/api-errors.go

    		HTTPStatusCode: http.StatusNotFound,
    	},
    	ErrPolicyAlreadyAttached: {
    		Code:           "XMinioPolicyAlreadyAttached",
    		Description:    "The specified policy is already attached.",
    		HTTPStatusCode: http.StatusConflict,
    	},
    	ErrPolicyNotAttached: {
    		Code:           "XMinioPolicyNotAttached",
    		Description:    "The specified policy is not found.",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    It means that you will be tempted to switch it off.
    
    So why should you bother?
    
    Dependency verification is about **trust** in what you get and what you ship.
    
    Without dependency verification it's easy for an attacker to compromise your supply chain.
    There are many real world examples of tools compromised by adding a malicious dependency.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/volumebinding/binder_test.go

    		capacities []*storagev1.CSIStorageCapacity
    
    		// Expected return values
    		reasons    ConflictReasons
    		shouldFail bool
    	}
    	scenarios := map[string]scenarioType{
    		"network-attached": {
    			pvcs: []*v1.PersistentVolumeClaim{provisionedPVC},
    			capacities: []*storagev1.CSIStorageCapacity{
    				makeCapacity("net", waitClassWithProvisioner, nil, "1Gi", ""),
    			},
    		},
    		"local-storage": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

     * Error messages will be directed to standard error rather than standard output now, unless a console is attached to both standard output and standard error. This may affect tools that scrape a build's plain console output. Ignore this change if you're upgrading from an earlier version of Gradle.
    
    [[deprecations_4.8]]
    === Deprecations
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  7. src/internal/trace/order.go

    		return "Undetermined"
    	case gcNotRunning:
    		return "NotRunning"
    	case gcRunning:
    		return "Running"
    	}
    	return "Bad"
    }
    
    // userRegion represents a unique user region when attached to some gState.
    type userRegion struct {
    	// name must be a resolved string because the string ID for the same
    	// string may change across generations, but we care about checking
    	// the value itself.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  8. cmd/iam-store.go

    	}
    
    	// Extracted session policy name string can be removed as its not useful
    	// at this point.
    	delete(m, sessionPolicyNameExtracted)
    
    	// sessionPolicy is nil and there is embedded policy attached we remove
    	// embedded policy at that point.
    	if _, ok := m[policy.SessionPolicyName]; ok && opts.sessionPolicy == nil {
    		delete(m, policy.SessionPolicyName)
    		m[iamPolicyClaimNameSA()] = inheritedPolicyType
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/mark_for_compilation_pass.cc

        if (!scope.empty()) {
          return scope;
        }
      }
    
      return std::nullopt;
    }
    
    // Returns true iff the attribute `attr_name` is attached to either the node or
    // to it's callee.
    static bool GetNodeOrFuncAttr(Node* node, FunctionLibraryDefinition* flib_def,
                                  const char* attr_name) {
      bool out = false;
      bool attr_value;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  10. tests/integration/ambient/baseline_test.go

    		if src.Config().HasSidecar() && dst.Config().HasWorkloadAddressedWaypointProxy() {
    			// We are testing to svc traffic but presently sidecar has not been updated to know that to svc traffic should not
    			// go to a workload-attached waypoint
    			t.Skip("https://github.com/istio/istio/pull/50182")
    		}
    
    		// TODO test from all source workloads as well
    		src.CallOrFail(t, opt)
    	})
    }
    
    func TestPodIP(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
Back to top