Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for generateRS (0.2 sec)

  1. cmd/test-utils_test.go

    	globalEventNotifier.InitBucketTargets(ctx, objLayer)
    
    	return testServer
    }
    
    // testServerCertPEM and testServerKeyPEM are generated by
    //  https://golang.org/src/crypto/tls/generate_cert.go
    //    $ go run generate_cert.go -ca --host 127.0.0.1
    // The generated certificate contains IP SAN, that way we don't need
    // to enable InsecureSkipVerify in TLS config
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  2. cmd/sts-handlers_test.go

    		}
    
    		value, err := webID.Retrieve()
    		if err != nil && !testCase.expectedErr {
    			c.Fatalf("Test %d: Expected to generate STS creds, got err: %#v", i+1, err)
    		}
    		if err == nil && testCase.expectedErr {
    			c.Fatalf("Test %d: An error is unexpected to generate STS creds, got err: %#v", i+1, err)
    		}
    
    		if err != nil && testCase.expectedErr {
    			continue
    		}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/conversion.go

    				} else {
    					res[fromKey][toKey].AllowAll = true
    				}
    			}
    		}
    	}
    	return res
    }
    
    // convertVirtualService takes all xRoute types and generates corresponding VirtualServices.
    func convertVirtualService(r configContext) []config.Config {
    	result := []config.Config{}
    	for _, obj := range r.TCPRoute {
    		result = append(result, buildTCPVirtualService(r, obj)...)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

        Type result_type =
            GetTensorTypeForTensorList(elem_type, handle_dtype, &rewriter);
    
        // Concatenate tensor stored in the input handle with the expanded item to
        // get a tensor equivalent to the TensorList generated by this op.
        rewriter.replaceOpWithNewOp<TF::ConcatOp>(
            op, result_type, scalar_zero,
            ArrayRef<Value>({input_handle, expanded_item}));
        return success();
      }
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  5. pkg/proxy/nftables/proxier.go

    ) (*Proxier, error) {
    	logger := klog.LoggerWithValues(klog.FromContext(ctx), "ipFamily", ipFamily)
    
    	if initOnly {
    		logger.Info("System initialized and --init-only specified")
    		return nil, nil
    	}
    
    	// Generate the masquerade mark to use for SNAT rules.
    	masqueradeValue := 1 << uint(masqueradeBit)
    	masqueradeMark := fmt.Sprintf("%#08x", masqueradeValue)
    	logger.V(2).Info("Using nftables mark for masquerade", "mark", masqueradeMark)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/listener_test.go

    	if l := xdstest.ExtractListener(model.VirtualInboundListenerName, listeners); l != nil {
    		t.Fatalf("unexpectedly generated virtual inbound listener")
    	}
    
    	if l := xdstest.ExtractListener(model.VirtualOutboundListenerName, listeners); l != nil {
    		t.Fatalf("unexpectedly generated virtual outbound listener")
    	}
    }
    
    func TestOutboundListenerAccessLogs(t *testing.T) {
    	m := mesh.DefaultMeshConfig()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  7. cmd/bucket-handlers.go

    	}
    
    	getBucketInfo := objectAPI.GetBucketInfo
    
    	if _, err := getBucketInfo(ctx, bucket, BucketOptions{}); err != nil {
    		writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
    		return
    	}
    
    	// Generate response.
    	encodedSuccessResponse := encodeResponse(LocationResponse{})
    	// Get current region.
    	region := globalSite.Region()
    	if region != globalMinioDefaultRegion {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  8. cmd/kubelet/app/server.go

    // The kubeDeps argument may be nil - if so, it is initialized from the settings on KubeletServer.
    // Otherwise, the caller is assumed to have set up the Dependencies object and a default one will
    // not be generated.
    func Run(ctx context.Context, s *options.KubeletServer, kubeDeps *kubelet.Dependencies, featureGate featuregate.FeatureGate) error {
    	// To help debugging, immediately log version
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    // or non-indexed (MOV*load or MOV*store) should be used. Indexed instructions
    // require an extra instruction and register to load the index so non-indexed is preferred.
    // Indexed ops generate indexed load or store instructions for all GOPPC64 values.
    // Non-indexed ops generate DS-form loads and stores when the offset fits in 16 bits,
    // and on power8 and power9, a multiple of 4 is required for MOVW and MOVD ops.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  10. cmd/iam-store.go

    // that the server knows the user is a member of.
    //
    // In LDAP users mode, the server does not store any group membership
    // information in IAM (i.e sys.iam*Map) - this info is stored only in the STS
    // generated credentials. Thus we skip looking up group memberships, user map,
    // and group map and check the appropriate policy maps directly.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
Back to top