Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 335 for mod$ (0.04 sec)

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

       matchLabels:
         app: foo
     mtls:
       mode: DISABLE
     portLevelMtls:
       9000:
         mode: STRICT
    ---`
    	paDisableWithPermissiveOnPort9000 := `
    apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
      name: default
    spec:
      selector:
        matchLabels:
          app: foo
      mtls:
        mode: DISABLE
      portLevelMtls:
        9000:
          mode: PERMISSIVE
    ---`
    	sePort8000 := `
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  2. pilot/pkg/xds/endpoints/ep_filters_test.go

    						// should be overridden by subset
    						Tls: &networking.ClientTLSSettings{Mode: networking.ClientTLSSettings_ISTIO_MUTUAL},
    					},
    					Subsets: []*networking.Subset{{
    						Name:   "disable-tls",
    						Labels: map[string]string{"app": "example"},
    						TrafficPolicy: &networking.TrafficPolicy{
    							Tls: &networking.ClientTLSSettings{Mode: networking.ClientTLSSettings_DISABLE},
    						},
    					}},
    				},
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  3. src/go/types/unify.go

    	case assign | exact:
    		return "assign, exact"
    	}
    	return fmt.Sprintf("mode %d", m)
    }
    
    // unify attempts to unify x and y and reports whether it succeeded.
    // As a side-effect, types may be inferred for type parameters.
    // The mode parameter controls how types are compared.
    func (u *unifier) unify(x, y Type, mode unifyMode) bool {
    	return u.nify(x, y, mode, nil)
    }
    
    func (u *unifier) tracef(format string, args ...interface{}) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/StartParameterResolutionOverride.java

            }
    
            @Override
            public void resolveArtifactsWithType(ComponentArtifactResolveMetadata component, ArtifactType artifactType, BuildableArtifactSetResolveResult result) {
                result.failed(new ArtifactResolveException(component.getId(), "No cached version available for offline mode"));
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  5. src/go/types/stmt.go

    		var v operand
    		check.expr(nil, &v, e)
    		if x.mode == invalid || v.mode == invalid {
    			continue L
    		}
    		check.convertUntyped(&v, x.typ)
    		if v.mode == invalid {
    			continue L
    		}
    		// Order matters: By comparing v against x, error positions are at the case values.
    		res := v // keep original v unchanged
    		check.comparison(&res, x, token.EQL, true)
    		if res.mode == invalid {
    			continue L
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  6. pkg/apis/core/v1/helper/helpers_test.go

    	if !ContainsAccessMode(modes, v1.ReadOnlyMany) {
    		t.Errorf("Expected mode %s, but got %+v", v1.ReadOnlyMany, modes)
    	}
    
    	modes = GetAccessModesFromString("ROX,RWX")
    	if !ContainsAccessMode(modes, v1.ReadOnlyMany) {
    		t.Errorf("Expected mode %s, but got %+v", v1.ReadOnlyMany, modes)
    	}
    	if !ContainsAccessMode(modes, v1.ReadWriteMany) {
    		t.Errorf("Expected mode %s, but got %+v", v1.ReadWriteMany, modes)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 23:03:54 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  7. pkg/volume/util/atomic_writer.go

    			return err
    		}
    		// Chmod is needed because os.WriteFile() ends up calling
    		// open(2) to create the file, so the final mode used is "mode &
    		// ~umask". But we want to make sure the specified mode is used
    		// in the file no matter what the umask is.
    		if err := os.Chmod(fullPath, mode); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  8. scan.go

    		initialized         = mode&ScanInitialized != 0
    		update              = mode&ScanUpdate != 0
    		onConflictDonothing = mode&ScanOnConflictDoNothing != 0
    	)
    
    	db.RowsAffected = 0
    
    	switch dest := db.Statement.Dest.(type) {
    	case map[string]interface{}, *map[string]interface{}:
    		if initialized || rows.Next() {
    			columnTypes, _ := rows.ColumnTypes()
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:57:36 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. src/net/url/url.go

    					return "", EscapeError(s[i : i+3])
    				}
    			}
    			i += 3
    		case '+':
    			hasPlus = mode == encodeQueryComponent
    			i++
    		default:
    			if (mode == encodeHost || mode == encodeZone) && s[i] < 0x80 && shouldEscape(s[i], mode) {
    				return "", InvalidHostError(s[i : i+1])
    			}
    			i++
    		}
    	}
    
    	if n == 0 && !hasPlus {
    		return s, nil
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/typexpr.go

    		if obj.pkg == check.pkg {
    			obj.used = true
    		}
    		check.addDeclDep(obj)
    		if !isValid(typ) {
    			return
    		}
    		x.mode = variable
    
    	case *Func:
    		check.addDeclDep(obj)
    		x.mode = value
    
    	case *Builtin:
    		x.id = obj.id
    		x.mode = builtin
    
    	case *Nil:
    		x.mode = nilvalue
    
    	default:
    		panic("unreachable")
    	}
    
    	x.typ = typ
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 16.6K bytes
    - Viewed (0)
Back to top