Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for shares (0.39 sec)

  1. CREDITS

    cooperation with the community in the case of network server software.
    
      The licenses for most software and other practical works are designed
    to take away your freedom to share and change the works.  By contrast,
    our General Public Licenses are intended to guarantee your freedom to
    share and change all versions of a program--to make sure it remains free
    software for all its users.
    
      When we speak of free software, we are referring to freedom, not
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 15:34:20 UTC 2024
    - 1.7M bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_pods.go

    	}
    	return buffer.Bytes()
    }
    
    // truncatePodHostnameIfNeeded truncates the pod hostname if it's longer than 63 chars.
    func truncatePodHostnameIfNeeded(podName, hostname string) (string, error) {
    	// Cap hostname at 63 chars (specification is 64bytes which is 63 chars and the null terminating char).
    	const hostnameMaxLen = 63
    	if len(hostname) <= hostnameMaxLen {
    		return hostname, nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  3. pilot/pkg/model/endpointshards.go

    	es.RLock()
    	defer es.RUnlock()
    	res := &EndpointShards{
    		Shards:          make(map[ShardKey][]*IstioEndpoint, len(es.Shards)),
    		ServiceAccounts: es.ServiceAccounts.Copy(),
    	}
    	for k, v := range es.Shards {
    		res.Shards[k] = make([]*IstioEndpoint, 0, len(v))
    		for _, ep := range v {
    			res.Shards[k] = append(res.Shards[k], ep.DeepCopy())
    		}
    	}
    	return res
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/api/v2/legalize_tf_test.cc

      TF_ASSERT_OK_AND_ASSIGN(
          XlaCompiler::CompilationResult result,
          CompileMlirModule(
              kMlirModuleStr,
              ConfigProto::Experimental::MLIR_BRIDGE_ROLLOUT_UNSPECIFIED));
    
      // Due to the shared test of this infrastructure, we just need to make sure
      // that the dumped file size is greater than what was originally inside
      // the test directory.
      TF_ASSERT_OK(env->GetChildren(test_dir, &files));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 13 23:59:33 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  5. docs/metrics/prometheus/list.md

    | `minio_node_mem_free_max`      | Free memory on the node (max).            |
    | `minio_node_mem_shared`        | Shared memory on the node.                |
    | `minio_node_mem_shared_avg`    | Shared memory on the node (avg).          |
    | `minio_node_mem_shared_max`    | Shared memory on the node (max).          |
    | `minio_node_mem_total`         | Total memory on the node.                 |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 43.3K bytes
    - Viewed (0)
  6. pilot/pkg/features/pilot.go

    			"These checks are extremely expensive, so this should be used only for testing, not production.",
    	).Get()
    
    	SharedMeshConfig = env.Register("SHARED_MESH_CONFIG", "",
    		"Additional config map to load for shared MeshConfig settings. The standard mesh config will take precedence.").Get()
    
    	MultiRootMesh = env.Register("ISTIO_MULTIROOT_MESH", false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. pilot/pkg/model/telemetry_logging.go

    		*meshconfig.MeshConfig_ExtensionProvider_Stackdriver:
    		// No access logs supported for this provider
    		// Stackdriver is a special case as its handled in the Metrics logic, as it uses a shared filter
    		return nil
    	}
    
    	return al
    }
    
    func tcpGrpcAccessLogFromTelemetry(push *PushContext, prov *meshconfig.MeshConfig_ExtensionProvider_EnvoyTcpGrpcV3LogProvider) *accesslog.AccessLog {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 23K bytes
    - Viewed (0)
  8. cmd/iam-store.go

    					err = store.loadPolicyDocWithRetry(ctx, policy, cache.iamPolicyDocsMap, 3)
    				}
    			}
    		}
    
    		return "done", err
    	})
    
    	if serverDebugLog {
    		console.Debugln("loadUser: loading shared", val, err, shared)
    	}
    
    	if IsErr(err, errNoSuchUser, errNoSuchPolicy, errNoSuchGroup) {
    		return nil
    	}
    
    	return err
    }
    
    func extractJWTClaims(u UserIdentity) (*jwt.MapClaims, error) {
    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. pilot/pkg/bootstrap/server.go

    	s.internalDebugMux = internalMux
    
    	// Debug handlers are currently added on monitoring mux and readiness mux.
    	// If monitoring addr is empty, the mux is shared and we only add it once on the shared mux .
    	if args.ServerOptions.MonitoringAddr != "" {
    		s.XDSServer.AddDebugHandlers(s.httpMux, nil, args.ServerOptions.EnableProfiling, whc)
    	}
    
    	// Monitoring Server.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  10. pilot/pkg/model/gateway.go

    		gatewayCfg := gatewayConfig.Spec.(*networking.Gateway)
    		log.Debugf("MergeGateways: merging gateway %q :\n%v", gatewayName, gatewayCfg)
    		snames := sets.String{}
    		for _, s := range gatewayCfg.Servers {
    			if len(s.Name) > 0 {
    				if snames.InsertContains(s.Name) {
    					log.Warnf("Server name %s is not unique in gateway %s and may create possible issues like stat prefix collision ",
    						s.Name, gatewayName)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
Back to top